Aaron Son
Aaron Son
ORDER BY expressions containing aggregation functions are not handled appropriately by the analyzer.
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...
ORDER BY expressions containing aggregation functions are not handled appropriately by the analyzer.
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 ```...
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...
Currently we do not replicate a `DROP DATABASE ...` result which is run on a primary to the standby servers. We should.
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...
`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...
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...