dolt icon indicating copy to clipboard operation
dolt copied to clipboard

Dolt – Git for Data

Results 471 dolt issues
Sort by recently updated
recently updated
newest added

In MySQL it seems that DATETIME and TIMESTAMP handle timezones a little differently: > MySQL converts TIMESTAMP values from the current time zone to UTC for storage, and back from...

bug
sql

fails here: ```golang func TestDecodeOverflows(tt *testing.T) { t := func(p interface{}, n float64, ts string) { assertDecodeErrorMessage(tt, types.Float(n), p, fmt.Sprintf("Cannot unmarshal from: Float to: %s details: (%g does not fit...

bug
testing

Regardless of when a PROCEDURE is created, the `MODIFIED` and `CREATED` time for is always the current time.

bug

Recently the [MySQL FDW](https://github.com/EnterpriseDB/mysql_fdw) added the use of the [mysql_stmt_store_result](https://dev.mysql.com/doc/c-api/8.0/en/mysql-stmt-store-result.html) function. This requires [server side cursors](https://dev.mysql.com/doc/refman/8.0/en/cursor-restrictions.html#:~:text=A%20server%2Dside%20cursor%20enables,remaining%20rows%20are%20not%20transferred.). Until then we will support MySQL FDW up till [REL-2_7_0](https://github.com/EnterpriseDB/mysql_fdw/releases/tag/REL-2_7_0)

enhancement

``` test-busteroni $ dolt sql # Welcome to the DoltSQL shell. # Statements must be terminated with ';'. # "exit" or "quit" (or Ctrl-D) to exit. test_busteroni> CREATE DATABASE test;...

bug
sql
correctness

The following does not work: **Using dolt sql:** ```SQL CREATE DATABASE parent_schema; CREATE TABLE parent_schema.parent( id INT, PRIMARY KEY(id) ); CREATE DATABASE child_schema; CREATE TABLE child_schema.child( id INT, parent_id INT,...

enhancement
sql

Since the `dolt import` path now supports warnings by going through the engine, we should actually expose those warnings. This is essential as during some imports the `IGNORE` syntax will...

enhancement
cli

To repro: 1. invoke `dolt sql` 2. make a really long line (or shrink the terminal window) 3. hit CTRL-A to go to the beginning of the line and then...

bug

When FK check is off, we currently ignore all FK constraints for any statements. According to [MySql documentations on FK check](https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_foreign_key_checks), there are couple cases that needs FK constraints check:...

bug
sql

These tests are consistently failing with error message: `# rm: cannot remove '/d/a/batstmp/dolt-bats-tests-l7bG5X/remotes-1377/test-org/test-repo/3e2k5sldj7srhghkvts1tcihmpv86hks': Device or resource busy` - garbage_collection.bats - git-dolt.bats - remotes.bats - sql-server-config.bats - sql-server-schema-fragments.bats - sql-server.bats -...

windows
testing