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

MySQL behavior for parsing datetime literals is slightly different from Dolt's current behavior. One example format was mentioned in https://github.com/dolthub/dolt/issues/7665 and shown below. [MySQL datetime format reference docs](https://dev.mysql.com/doc/refman/8.0/en/date-and-time-literals.html) ### MySQL...

sql
correctness

Is it possible to apply schema changes to all branches? I'm considering using Dolt solely for data version control in my application. If a new feature requires schema modifications, can...

enhancement
customer issue
version control

A customer had a large table that had a `text` column in it. When creating an index it took multiple days because it was round tripping to get the `text`...

bug
sql
performance

Repro: 1. Create a new database on DoltHub. Make a table and commit so you can clone. 2. Clone it locally: ``` $ dolt clone timsehn/replication_restart cloning https://doltremoteapi.dolthub.com/timsehn/replication_restart $ cd...

bug
replication

A customer asked for options to stop and restart a running `dolt-sql-server`. The idea is to implement `dolt sql-server --restart` and `dolt sql-server --stop`. If there are multiple running servers...

enhancement
cli
sql server

A skipped tests is added here: https://github.com/dolthub/go-mysql-server/pull/2423 ```sql prepare stmt from 'select ?'; set @a = cast(123.45 as decimal(5,2)); execute stmt using @a; ``` Related issue: https://github.com/dolthub/dolt/issues/7665

bug
sql
prepared statements

see: https://github.com/dolthub/dolt/blob/801a82a3af6e60d688e12238dec22bd5c9ea7e10/go/libraries/doltcore/env/actions/remotes.go#L742 For reasons which are not immediately clear the `dolt fetch --prune` command doesn't seem to actually prune when a sql-server is running. I _think_ the race mentioned in...

cli

`dotl remote` currently bypasses a running sql-server, and should instead use the `DOLT_REMOTE()` stored procedure. Difficulty: Low Value: Medium Overarching Ticket: https://github.com/dolthub/dolt/issues/3922

enhancement
cli
customer issue

AFAICT the previous implementation writes every internal address for a prolly node on every write. This is unnecessary when the chunker already puts every new node. This disproportionately affects large...

correctness_approved

MySQL's [`SHOW STATUS` statement returns server status information](https://dev.mysql.com/doc/refman/8.3/en/show-status.html) from the available [server status variables](https://dev.mysql.com/doc/refman/8.3/en/server-status-variables.html). Note that [server status variables](https://dev.mysql.com/doc/refman/8.3/en/server-status-variables.html) are different from system variables – the current implementation of `show...

enhancement
customer issue
correctness