Daylon Wilkins

Results 28 issues of Daylon Wilkins

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...

enhancement
sql

Dolt allows the creation of the following table, and trying to insert the example row results in a panic. [repro.sql](https://github.com/dolthub/dolt/files/14266393/repro.txt) ``` panic: runtime error: slice bounds out of range [21844:19792]...

bug
sql
panic
good repro

We don't currently support using indexes with `ORDER BY`. https://dev.mysql.com/doc/refman/8.0/en/order-by-optimization.html

This adds root objects, which Doltgres uses to implement sequences (for now). They're flexible enough that they're also usable for other things that we may want to put on the...

correctness_approved

The following issue should only be relevant to Dolt and MySQL, however it also affects DoltgreSQL. MySQL has a row limit of 65KB, however PostgreSQL does not have the same...

bug

Upon fixing the ping issue in https://github.com/dolthub/doltgresql/issues/42, the next stopper was `CREATE SCHEMA`. This is a new issue since there are going to be more cases where tools rely on...

When running a naked server, you get the following line: `Starting server with Config HP="localhost:5432"|T="28800000"|R="false"|L="info"|S="/tmp/mysql.sock"` This is a hold-over from the underlying Dolt system, so we need to change it.

enhancement

While the server is running, we'll occasionally get these in the logs: ``` ERROR [no conn] unable to determine if events need to be reloaded: expected token to be hash.Hash,...

bug

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....