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

Currently dolt returns an empty result when running `describe` on information_schema tables. Skipped bats test here: https://github.com/dolthub/dolt/pull/3716

enhancement
sql

When multiple servers access the same `mysql.db` file (which currently houses all users and privileges data), each server only reads from the file when starting. Afterward, each server will dump...

Double types with precision and scale should be treated as mysql decimal types. Consider the following in the mysql shell ```bash mysql> show create table test; +-------+--------------------------------------------------------------------------------------------------------------------------+ | Table |...

bug
sql
good-repro

Dolt already supports patch and apply functionality. We should make it explicit with commands. `dolt patch` is equivalent to `dolt diff -r sql > file.sql`. `dolt apply` equivalent to `dolt...

enhancement
cli

Autocommit (on by default) prevents transactions from executing when conflicts exists. This causes problems from `select * from dolt_conflicts` query which is needed to resolve said queries. Repro below ```...

1hr

The LOAD DATA INFILE Enginetests that pass in GMS were never ran against the Dolt integrator. I added skipped `TestLoadData` in `dolt_engine_test.go`.

testing

Each mysql client test should test connecting to a revision database (i.e. `/`)

testing

https://github.com/dolthub/dolt/issues/3645 appears to only manifest over the wire. We should proactively test for wire compatibility by writing a wire-protocol harness to the engine tests. It should start up a dolt...

testing

In the SQL shell: ```sql difftest> set @@persist.dolt_transaction_commit = 1; difftest> show variables like '%dolt%'; +-------------------------------+-------+ | Variable_name | Value | +-------------------------------+-------+ | dolt_allow_commit_conflicts | 0 | | dolt_async_replication |...

bug

Dolt provides several ways to diff individual tables, but there's isn't a built in way to ask Dolt to tell you all the differences in all tables that have changed,...

enhancement