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

In MySQL, when the `DEFAULT` value is used to insert into an `auto_increment` column, the last insert auto increment value is recorded and accessible through `last_insert_id()`. Dolt does not currently...

bug
correctness

Dolt supports Shallow Clone: https://www.dolthub.com/blog/2024-02-21-shallow-clone/ This allows you to only pull to a certain depth of history. There is also Partial clone: https://git-scm.com/docs/partial-clone Partial clone only clones a certain set...

enhancement
version control

correctness_approved

We should be able to show the database create statement as of a certain commit. Related: https://github.com/dolthub/dolt/pull/7823

enhancement

: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
correctness_approved

[The `ALTER USER` statement](https://dev.mysql.com/doc/refman/8.0/en/alter-user.html) allows a `WITH ` clause, but Dolt can't currently parse this clause. Example: ```sql > ALTER USER 'myUser'@'%' WITH MAX_USER_CONNECTIONS 5; ERROR 1105 (HY000): syntax error...

correctness

The feature would be to replicate the git tool in dolt: https://git-scm.com/book/en/v2/Git-Tools-Rerere

enhancement
customer issue
version control

Use sorting to skip more steps building a prolly map. Shaves maybe 20-25% off of external index rebuilds. This also fixes a bug where we were incorrectly using only the...

correctness_approved

This uses a buffered channel to avoid blocking on indexLookup writes. The main side effect is that lookups can be out of order.

correctness_approved