Neil Macneale IV

Results 24 issues of Neil Macneale IV

Currently when you push changes to a dolt server (DoltHub or Dolt SQL Server), the message presented to the user is incomplete and incorrect. For example, if you push change...

bad error message

The following commands should all produce the same results, assuming you have a database called `petridish` and a branch called `br1` ``` lcl:~/Documents/data_dir_1/db1/petridish$ dolt --branch br1 status The current directory...

cli

If you have a `dolt sql` session open, and your sql-server restarts, you get the following error: ``` mysb> ANY SQL COMMAND [mysql] 2023/11/07 10:02:23 packets.go:122: closing bad idle connection:...

enhancement
bad error message
cli

Granting access to a table in MySQL will fail if you attempt grant the permission to a non-existent table: ``` mysql> GRANT UPDATE ON mysql.tbl to testuser@localhost; ERROR 1146 (42S02):...

enhancement
wontfix
correctness

It would be really cool is we could invert to control of CLI and SQL Shell. Example: ``` db4> insert into tbl values (42); Query OK, 1 row affected (0.00...

cli

I have no remotes configured, and the SQL error tells me to run cli commands. ``` db4> call dolt_push(); fatal: No configured push destination. Either specify the URL from the...

sql
bad error message

I have a non-super user. They can see their grants IFF they don't specify a user, but if they specify their own id, the permission check fails. ``` db4> show...

sql
correctness

I have a stored procedure which works fine in MySQL, but results in an infinite loop in dolt: Setup: ``` mysql> create table tbl (id int auto_increment primary key, checksum...

bug
sql
correctness

Hello! I'm hoping to use the compress package for packing bytes in our archive format for Dolt (https://github.com/dolthub/dolt). Our data is very amenable to custom dictionaries for small sets (5-50)...

If you modify the collation of your database today, there is no way to stage it, or do any of the workflows you would expect with data and schemas. First,...

bug