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

A customer is a heavy user of tags. They want to tag an immutable version of their data for model training. To tag individual tables, they've started appending the table...

enhancement
version control

In git, you can stage chunks of a file for commit via the `-p` flag. In dolt, I would expect the equivalent to be staging subsets of rows/columns but currently...

enhancement
version control

It was written this way for simplicity of implementation, but this is a divergence from the git model and it makes us require a user name and email on the...

enhancement
version control

Foreign key checks are expensive, and we currently check them on every row that gets changed in an `UPDATE`, even if no columns with a foreign key constraint have changed....

sql
performance

If it's compatible with dolt's underlying architecture, would it be possible to use short/abbreviated hashes (this first 8 or so characters of a hash), in place of the full hash...

enhancement
version control

Dolt errors don't provide stack traces, making it difficult to debug problems and customer issues. Dolt errors should have them and we should enforce their use in all code going...

enhancement
bad error message

When you attempt to insert a value in a column and the value is out of range (i.e. integer too large, string too long), Dolt returns a generic error: `[HY000][1105]...

enhancement
sql
bad error message

Example: `$ dolt reset HEAD~` Should set working root value to the root value at `HEAD~`. `$ dolt checkout HEAD~ -- table_name` Should set table value for `table_name` in the...

enhancement
good first issue
cli

Is there a way to exclude some tables from versioning so when adding data into those tables, they should be same on all branches? There is some dolt_ignore system table,...

enhancement
customer issue
version control

Using version: v0.18.0 When executing the following query, an error ( `syntax error at position 134 near 'AS') occurs. ` ) ``` INSERT INTO test_campaigns (email, end_time, name, registered_time) VALUES...

enhancement
sql
customer issue