Neil Macneale IV
Neil Macneale IV
A user demonstrated unusual behavior as the following: With a repository that has _no local changes_ at all, there is a code path which performs the following SQL: `call dolt_commit("-Am",...
A common use case which comes up is that users of Dolt want to make schema changes on one branch, then update other branches with the same change. Traditionally we...
see: https://github.com/dolthub/dolt/blob/801a82a3af6e60d688e12238dec22bd5c9ea7e10/go/libraries/doltcore/env/actions/remotes.go#L742 For reasons which are not immediately clear the `dolt fetch --prune` command doesn't seem to actually prune when a sql-server is running. I _think_ the race mentioned in...
`dotl remote` currently bypasses a running sql-server, and should instead use the `DOLT_REMOTE()` stored procedure. Difficulty: Low Value: Medium Overarching Ticket: https://github.com/dolthub/dolt/issues/3922
`dolt backup` doesn't use the `DOLT_BACKUP()` stored procedure, and it bypasses a running sql-server. Difficulty: Low Value: Low https://github.com/dolthub/dolt/issues/3922
`dolt table` currently uses a mix of disk access and SQL to perform it's work, and we should move all commands to using the CliContext infrastructure that other cli commands...
`dolt schema` doesn't use SQL and goes directly to on disk resources. Common SQL operations should be able to get and update all information required. There is also internal column...
`dolt docs` currently bypasses a running sql-server, and should instead use the SQL interface directly. Difficulty: Low Value: Low Overarching Ticket: https://github.com/dolthub/dolt/issues/3922
`dolt filter-branch` is currently a CLI only operation with no SQL equivalent. Build a SQL version, then migrate the CLI to use it so that it can be done with...
`dolt stash` currently doesn't work at all when a sql-server is running. There is currently no SQL mechanism to perform a stash, so developing a stored procedure needs to happen...