mirror of
https://github.com/dolthub/dolt.git
synced 2026-03-14 19:20:44 -05:00
SQL Command arguments which pertain to instantiating a local SqlEngine instance are now global arguments which come before the sql subcommand. This is a breaking change for users of the sql command who pass in the following arguments: --data-dir --user --doltcfg-dir --privilege-file --branch-control-file All of the test changes pertain to moving those arguments, and nothing else. This is by design to ensure we don't have broader impact to the interface. With this abstraction in place, we can put a different Queryist implementation in place - specifically one which talks to a remotes server - which is the end goal. See: https://github.com/dolthub/dolt/issues/3922