Aaron Son

Results 12 issues of Aaron Son

The following works because the SUM gets mapped directly to the projected SUM expression (by resolve_columns): ```sql SELECT category, SUM(price) FROM products GROUP BY category ORDER BY SUM(price) ASC ```...

It's probably rare that the user actually wants to create new credentials and associate them with a different dolthub account. If credentials already exist and they already work with the...

enhancement
cli

The following works because the SUM gets mapped directly to the projected SUM expression (by resolve_columns): ```sql SELECT category, SUM(price) FROM products GROUP BY category ORDER BY SUM(price) ASC ```...

bug
sql
analyzer

The expected behavior of a server in standby role within cluster replication is that it is read-only. However, currently the standby role server allows: * `CREATE DATABASE ...` * `DROP...

enhancement
replication

Currently we do not replicate a `DROP DATABASE ...` result which is run on a primary to the standby servers. We should.

enhancement
replication

If we want a standby to be ready to promote to primary at any time, at least most of its user-facing configuration should be the same. This notably includes users...

enhancement
replication

`CALL dolt_assume_cluster_role` is very powerful and can be used to disrupt the availability and in some cases the committed writes of an existing doltdb cluster. We should provide permissions around...

enhancement
replication

Example: `$ dolt reset HEAD~` Should set working root value to the root value at `HEAD~`. `$ dolt checkout HEAD~ -- table_name` Should set table value for `table_name` in the...

enhancement
good first issue
cli

When Dolt fails to parse a JSON value, its error message is somewhat barebones: ``` > CREATE TABLE json_t (v JSON); > INSERT INTO json_t (v) VALUES ('[NaN]'); Invalid JSON...

enhancement
bad error message
customer issue
json

When `max_connections` is reached, there is no mechanism for a DBA to login and start killing sessions. We could open an additional SQL port which only allows privileged user access....

enhancement
sql server
customer issue