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

This functionality is present in git but not yet with dolt, i.e. ``` dolt checkout 39mg263d dolt checkout myTag ```

enhancement
cli

The max it will create is a varchar(16383) so if you try to import a CSV with longer columns it will fail. ``` is not valid for column "client" (type...

enhancement
cli

Should be possible to connect to `mydb/newBranch` without creating that branch first.

enhancement

Customers who store large payloads in text / JSON columns could benefit from seeing the diff within each column, rather than treating the value as opaque. This could be a...

enhancement
sql
cli

Due to file handles in use, retries ineffective. Hard to reproduce locally but happens reliably on CI. Several skipped bats tests in sql-create-database.bats for this problem.

bug
windows

When creating a table with an `int` column specifying a precision, this precision is lost in the information schema (it appears to work for `numeric` typed columns). Example: ```sql create...

enhancement
sql

The result of the `SHOW CREATE TABLE` query should include the `AUTO_INCREMENT` clause. Example: ```sql create table foo(id int auto_increment primary key, x varchar(10)) ; insert into foo(x) values('bar') ;...

enhancement
sql

When a `CREATE TABLE` DDL contains a `COMMENT` clause the comment ends up being dropped and is not visible in the information schema, as exemplified here: ```sql create table foo(x...

bug
sql

Repro enginetest: ``` { Name: "simple decimal type insert", SetUpScript: []string{ "CREATE TABLE test(id int primary key auto_increment, decimal_col DECIMAL(9,2))", }, Assertions: []queries.ScriptTestAssertion{ { Query: "INSERT INTO test(decimal_col) VALUES (?)",...

bug
panic

:coffee: *An Automated Dependency Version Bump PR* :crown: ### Initial Changes The initial changes contained in this PR were produced by `go get`ing the dependency. ``` $ cd ./go $...

gms-bump