Fix galera_log_output_csv.test

Truncate the mysql.slow_log table after test is complete.
This commit is contained in:
Sachin 2019-06-26 14:49:23 +05:30
parent d36c107a6b
commit aa55d93cde
2 changed files with 4 additions and 0 deletions

View File

@ -16,3 +16,5 @@ SELECT COUNT(*) = 1 FROM mysql.slow_log WHERE sql_text = 'SELECT 2 = 2 FROM t1';
COUNT(*) = 1
1
DROP TABLE t1;
truncate table mysql.slow_log;
truncate table mysql.general_log;

View File

@ -22,3 +22,5 @@ SELECT COUNT(*) = 1 FROM mysql.slow_log WHERE sql_text = 'SELECT 2 = 2 FROM t1';
--connection node_1
DROP TABLE t1;
truncate table mysql.slow_log;
truncate table mysql.general_log;