summaryrefslogtreecommitdiffstats
path: root/mysql-test/suite/gcol/t/gcol_update.test
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--mysql-test/suite/gcol/t/gcol_update.test5
1 files changed, 5 insertions, 0 deletions
diff --git a/mysql-test/suite/gcol/t/gcol_update.test b/mysql-test/suite/gcol/t/gcol_update.test
index 2076632f..86474f86 100644
--- a/mysql-test/suite/gcol/t/gcol_update.test
+++ b/mysql-test/suite/gcol/t/gcol_update.test
@@ -1,5 +1,8 @@
--source include/have_innodb.inc
+SET @save_stats_persistent = @@GLOBAL.innodb_stats_persistent;
+SET GLOBAL innodb_stats_persistent = 0;
+
connect (purge_control,localhost,root);
START TRANSACTION WITH CONSISTENT SNAPSHOT;
@@ -60,3 +63,5 @@ disconnect purge_control;
connection default;
drop table t1;
+
+SET GLOBAL innodb_stats_persistent = @save_stats_persistent;