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

Either put them in the behavior section or make a new replication section.

This came up in the context of replication where a command line `dolt commit` did not trigger replication but `dolt sql -q "call dolt_commit()"` did. Makes no sense. We need...

Found the error while importing a UTF-8 with BOM encoding CSV file using: `dolt table import -c` I selected the first column of the file and received an error: ```bash...

bug

I checkout many branches from dev branch. then I insert some data on different brances. when I merge these branch to dev, it occurs some errs. I upload the code...

We should loosen identifier validation to match MySQL's behavior. Context from: https://github.com/dolthub/dolt/pull/3779 > MySQL's only rules for identifier names are for when they are unquoted. If they quote the identifier...

enhancement
sql

```sql CREATE table t1 (pk int PRIMARY KEY); CREATE table t2 (pk int PRIMARY KEY, col1 int); INSERT into t1 VALUES (1), (2), (3); INSERT into t2 VALUES (1, 100),...

bug
sql

```sql CREATE TABLE t (col1 int); DELETE t FROM t JOIN dolt_conflicts_t c ON t.col1 = c.their_col1; ```

bug
sql

Here I clone the data, export the tables to two files and then grab the create table statements needed when I create the tables on the new server ``` ~/datasets>dolt...

testing

``` >dolt log -n 1 ←[33mcommit 3il13afu8mba8ktjp0tdevlafn6n9hg7 ←[0m←[33m(←[0m←[36;1mHEAD -> ←[0m←[32;1mmain←[0m←[33m, ←[0m←[31;1morigin/main←[0m←[33m) ←[0m Author: spacelove Date: Wed Jun 15 09:40:29 -0400 2022 updated readme ``` version: `0.40.12`

cli
windows

Hi, I wanted to open a request for the ability to lock a branch with functionality similar to a table level lock, or an advisory lock. This would allow the...

enhancement