mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 04:22:27 +01:00
gcol.gcol_rollback could fail with errors in server log
If previous tests opened system tables, the test could fail because it crashes the server. Added FLUSH TABLES to avoid it
This commit is contained in:
parent
edf77043ba
commit
bcd5622ebb
1 changed files with 5 additions and 0 deletions
|
@ -6,6 +6,11 @@
|
|||
# Save the initial number of concurrent sessions.
|
||||
--source include/count_sessions.inc
|
||||
|
||||
# Make sure there are no unexpected open tables from previous tests
|
||||
--disable_query_log
|
||||
FLUSH TABLES;
|
||||
--enable_query_log
|
||||
|
||||
CREATE TABLE t (
|
||||
a INTEGER,
|
||||
b BLOB GENERATED ALWAYS AS (a) VIRTUAL,
|
||||
|
|
Loading…
Reference in a new issue