Jason Fulghum
Jason Fulghum
MySQL will implicitly convert types for `InSubquery` nodes, but Dolt doesn't seem to do this. **MySQL Behavior:** ``` mysql> select 1 from dual where 1 in (select "1" from dual);...
Fixes: https://github.com/dolthub/dolt/issues/3934 Depends on: https://github.com/dolthub/go-mysql-server/pull/1156
I didn't see any Dolt engine tests using views with as of expressions, so wanted to add some coverage. Depends on: https://github.com/dolthub/go-mysql-server/pull/1159
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...
Git allows users to run `git clone` with GitHub URLs, but `dolt clone` doesn't support specifying a url, only the `/` format. To follow Git's semantics, `dolt clone` should support...
We should loosen identifier validation to match MySQL's behavior. Context from: https://github.com/dolthub/dolt/pull/3779 > MySQL's only rules for identifier names are for when they are unquoted. If they quote the identifier...
Each mysql client test should test connecting to a revision database (i.e. `/`)
Dolt provides several ways to diff individual tables, but there's isn't a built in way to ask Dolt to tell you all the differences in all tables that have changed,...
When retrieving enum values for `ShowCreateTable`,`Information_Schema.Columns`, and `Describe/ShowColumns`, they were always being converted to lowercase, which doesn't match MySQL's behavior. Instead, we should preserve the case each enum value was...