Commit bcd5622e authored by Elena Stepanova's avatar Elena Stepanova

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
parent edf77043
......@@ -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,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment