mirror of
https://github.com/dolthub/dolt.git
synced 2026-02-27 10:09:13 -06:00
Cluster replication creates a system database, `dolt_cluster`, which does not support transactions. There are also UserSpaceDatabases which do not support CreateTransaction. CreateTransaction has special code to avoid visiting them when recording the start transaction state. CreateSavepoint needed to be updated with that logic as well.
go-sql-server-driver
This is a driver and a test suite for tests interacting with dolt sql-server.
These tests describe a setup for the sql-server(s) which should be running, the
interactions which should be run against the servers, and the assertions which
should pass given those interactions.
This is meant to be more declarative and more robust than using bats for
these integration tests.
Something belongs in this package if it primarily tests interactions with the exposed MySQL port on the sql-server.
Something belongs in bats if it primarily tests interactions with the dolt
binary itself. One example for the dolt sql-server command itself would be
testing config validation which results in exit codes or help text displayed.