Daylon Wilkins

Results 28 issues of Daylon Wilkins

Ignore the errors for now, I still need to add all of the character sets and collations that we use internally. Testing will come once the missing items are in...

When multiple servers access the same `mysql.db` file (which currently houses all users and privileges data), each server only reads from the file when starting. Afterward, each server will dump...

Dolt does not operate correctly under Windows Subsystem for Linux 2. If you plan to use WSL with Dolt, we recommend using WSL 1. Known issues: * Piping files into...

wontfix

The following example should error: ``` CREATE TABLE a (x BIGINT PRIMARY KEY); INSERT INTO a VALUES (1), (2); UPDATE a SET X = X + 1 ORDER BY x...

Repro: ```sql CREATE TABLE test (pk BIGINT PRIMARY KEY, v1 INT UNSIGNED); INSERT INTO test VALUES (1, "04394"); ``` Running the above query returns the following error in the integrator...

Given the following example queries: ```sql INSERT INTO t1 (a,b,c) VALUES (1,2,3),(4,5,6) AS new ON DUPLICATE KEY UPDATE c = new.a+new.b; INSERT INTO t1 (a,b,c) VALUES (1,2,3),(4,5,6) AS new(m,n,p) ON...

No tests as this is incorrect behavior, BUT it will at least fix some of the customer issues.

We need to implement full regex parsing to support `REGEXP_LIKE`. MySQL implements it on top of [icu](https://github.com/unicode-org/icu), which may also be the best path forward for us to ensure exact...

Currently, collation coercibility is approximated using an incorrect implementation. There are many instances where we will use the wrong collation or outright fail when we should succeed. A full implementation...

Previously we required delimiters to have the previous delimiter at the end, but that requirement no longer exists, which matches MySQL's behavior.