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

Would be similar to two dot `git log` https://matthew-brett.github.io/pydagogue/git_log_dots.html Should also be an option in the sql context so that we can show pull request commits for the hosted workbench

feature

In MySQL: ``` mysql> with recursive t (n) as (select sum(1) from dual union all select (2.00) from dual) select sum(n) from t; +--------+ | sum(n) | +--------+ | 3.00...

bug
sql

Setting up a new read replica, you have to define the variables in a very particular order. This fails: ```bash dolt sql -q "SET @@persist.dolt_read_replica_remote = origin;" dolt sql -q...

bug
sql-server
replication

Repro sequence: Shell 1: ``` test_dolt_sql $ dolt init --new-format Successfully initialized dolt data repository. test_dolt_sql $ dolt sql-server Starting server with Config HP="localhost:3306"|T="28800000"|R="false"|L="info" 2022-09-08T09:51:24-07:00 INFO [conn 1] NewConnection {DisableClientMultiStatements=false}...

bug
cli

``` gc-repro $ dolt init --new-format Successfully initialized dolt data repository. gc-repro $ dolt sql -q "create table t (c1 int)" gc-repro $ dolt add . gc-repro $ dolt commit...

bug
cli

Repro. Shell 1: ``` dolt_new $ mkdir drop_repro dolt_new $ cd drop_repro/ drop_repro $ dolt init --new-format Successfully initialized dolt data repository. drop_repro $ dolt sql-server Starting server with Config...

sql
bad-error-message
sql-server

Repro: 1. Configure a backup like so: `rollback $ dolt backup add backup file:///tmp/rollback-backup` 2. `cd ..` 3. `dolt sql-server` 3. Another shell. ``` rollback $ mysql -h 127.0.01 -u...

bug
sql-server
good-repro

Shell 1: ``` dolt_new $ ls charsets_collations er-diagram schema-merge config.yaml er-diagram-2 us-housing-prices-v2 data_diff gc-repro dolt_new $ dolt sql-server Starting server with Config HP="localhost:3306"|T="28800000"|R="false"|L="info" 2022-09-12T15:10 ``` Shell 2: ``` $ mysql...

bug
sql-server

UpdateJoins only honor the check constraints of the first table being updated. If additional joined tables have check constraints, they are not included. **Repro** ```sql ❯ dolt version dolt version...

bug

In MySQL: ``` >SELECT DISTINCT val FROM (values row(1.00), row(1), row(2), row(2)) a (val); +------+ | val | +------+ | 1.00 | | 2.00 | +------+ ``` In Dolt: ```...

bug
sql