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 appears that `dolt sql-server` cannot create case-sensitive (i.e., upper-case) ENUM options. ## Reproduce 1. Run the follow `CREATE TABLE` command. ```sql CREATE TABLE `test_table` ( `LSD` char(18) NOT NULL,...

Currently, when you clone a single branch from a Dolt database, you get only that single branch, but you still get remote tracking branches for the other branches in the...

good first issue

I want to drop a database at a commit, but getting a database not found error: ``` mysql> show databases; +-------------------------------------------+ | Database | +-------------------------------------------+ | coronavirus | | information_schema...

bug

Repro: ``` mysql> show databases; +-------------------------------------------+ | Database | +-------------------------------------------+ | information_schema | | test | | test/9kp2re4irbrdiu20dlimjtekkuv7gcf3 | | test/bttbgdfg21i0vj46cjpcvpcht7hdg9vc | | us_jails | | us_jails/asha5b6ut0cbaaouoo3pifle4dp3220g | | us_jails/main...

bug

I encountered this with the reserved keyword 'rank'. The MySQL manual says > Exception: A word that follows a period in a qualified name must be an identifier, so it...

bug

Consider the following table definition ``` CREATE TABLE `server_cost` ( `cost_name` varchar(64) NOT NULL, `cost_value` float DEFAULT NULL, `last_update` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `comment` varchar(1024) DEFAULT...

feature

With really large databases (couple hundred gb) that contain large indexes, the `dolt cli` takes substantially longer. This is due to the fact dolt loads indexes into memory in order...

bug
performance
cli

Suppose we create the following view in both Dolt and MySQL on a database named `hi` ```SQL create view myview as SELECT var from t; ``` Doing a `SELECT *...

bug
ORM
correctness

Dolt currently represents partial updates as updating the entire row at once. Essentially we are evaluating violations in the case of the entire row instead of just referenced rows. We...

bug
sql
good repro
correctness

We should implement the ALTER VIEW syntax as per the following [guidelines](https://www.mysqltutorial.org/mysql-views/mysql-alter-view/)

enhancement
sql
correctness