Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
sql: fix TestRandomSyntaxSchemaChangeDatabase flake
Previously, TestRandomSyntaxSchemaChangeDatabase could flake because of contention from multiple Go routines executing SQL against the same database. Some of these schema changes were long-running, making this test unreliable. To address this, this patch creates multiple databases, so that every two connections will share the same database. Fixes: cockroachdb#128287 Release note: None
- Loading branch information