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

Repro: ```sql % dolt sql # Welcome to the DoltSQL shell. # Statements must be terminated with ';'. # "exit" or "quit" (or Ctrl-D) to exit. new3/main*> create table json_index...

bug
sql

By default, MySQL's collation is `utf8mb4_0900_ai_ci` https://dev.mysql.com/doc/refman/8.0/en/charset.html#:~:text=The%20default%20MySQL%20server%20character%20set%20and%20collation%20are%20utf8mb4%20and%20utf8mb4_0900_ai_ci Dolt has it set as `utf8mb4_0900_bin`. As a result, we have to set the collation through `@@collation_connection` (`@@persist.collation_connection` if you want it to...

good repro
correctness

Steps to repro: 1. Launch Windows CMD 2. `dolt sql` 3. type some stuff 4. ALT + TAB away 5. ALT + TAB back 6. Terminal now behaves as if...

bug
windows

Doltgres enables the UseSearchPath global at startup, which triggers this behavior. This is a shim to get a proof of concept of this behavior working faster. A better solution, coming...

I think the count of a primary key and count of a unique index with all non-nullable columns should both equivalent to `count(*)`: ```sql create table xyz (x int primary...

sql
performance
analyzer

This parses in MySQL, but throws syntax error in dolt. ```sql mysql> create table t (i int); Query OK, 0 rows affected (0.0241 sec) mysql> insert into t values (1);...

good repro
correctness

In MySQL, string comparisons just ignore the `NUL` character (`'\0'`) ```sql mysql> select '123' = '123\0'; +-----------------+ | '123' = '123\0' | +-----------------+ | 1 | +-----------------+ 1 row in...

good repro
correctness

Problem exist on Dolt in Docker both dolthub/dolt-sql-server:1.38.3 and dolthub/dolt-sql-server:1.39.0 only with Pomelo connector Pomelo.EntityFrameworkCore.MySql" Version="8.0.2", everything works if I use MySql.EntityFrameworkCore" Version="8.0.2" connector. I tested also commit on Pomelo...

bug
good repro
customer issue

This adds a new workflow that runs a subset of the tests in [DoltgreSQL](https://github.com/dolthub/doltgresql) to check for any major integration errors. The workflow does not fail if errors are encountered....

Repro: ``` $ mkdir test_filter_branch $ cd test_filter_branch $ dolt init --fun Successfully initialized dolt data repository. $ dolt sql -q "create table t (id int primary key, words varchar(30))"...

bug
good repro
version control