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

It's off by default so the documentation is misleading. Or if it's a switch to turn it on this should work: ```bash us-jails $ dolt sql-server --socket error: no value...

Possibly related to #3976: ``` error=syntax error at position 34 near 'Event', query=SELECT Event.name AS `event`, PluginEvent.pluginid, PropertySet.name AS propertyset FROM `abcx_site_plugin_events` PluginEvent INNER JOIN `abcx_site_plugins` Plugin ON Plugin.id =...

bug

I have a query failing with `ERROR 1105 (HY000): expression 'Policy.data' doesn't appear in the group by expressions`. With legacy systems normally I relax `sql_mode` to TRADITIONAL or "" to...

enhancement

MySQL supports indexes on `TEXT` and `BLOB` types[^1] - in single and composite indexes. They require a length prefix: > When you index a [BLOB](https://dev.mysql.com/doc/refman/8.0/en/blob.html) or [TEXT](https://dev.mysql.com/doc/refman/8.0/en/blob.html) column, you must...

enhancement
sql

### Use case There are some files (tables) that I never want to commit - files that change regularly, where the content doesn't need versioning, and where performance is important....

enhancement

Should be built into the `dump-docs` command for dolt.

documentation
feature

I try to merge changes into my main branch: ```bash mnt/findb$ dolt merge schema Updating d1lhsk9v9m9c0947467q7gs1nroo1q6h..n5crct6h4rh5u1qhduf9j55t9ehs65s4 Unable to stage changes: add and commit to finish merge error: Failed to commit...

Today, Dolt has an internal tag system that is used to assign identities to columns. The tag system helps Dolt diff and merge columns even when they have been renamed...

bug
enhancement
merge
diff

### Repro In Shell 1: ``` dolt $ dolt sql-server Starting server with Config HP="localhost:3306"|T="28800000"|R="false"|L="info" 2022-07-26T15:59:25-07:00 INFO [conn 1] NewConnection {DisableClientMultiStatements=false} 2022-07-26T15:59:53-07:00 WARN [conn 1] error running query {connectTime=2022-07-26T15:59:25-07:00, connectionDb=,...

creating user and granting select to the user works fine, but granting all privileges to the user failed. ```sql mysql> CREATE USER 'dolt'@'%' IDENTIFIED BY 'dolt'; mysql> GRANT SELECT ON...