--source include/have_innodb.inc --source include/have_debug.inc --source include/have_debug_sync.inc call mtr.add_suppression("InnoDB: Cannot save table statistics for table `test`\\.`t1`: Persistent statistics do not exist"); SET GLOBAL innodb_stats_persistent= ON; CREATE TABLE t1 (t TEXT) ENGINE=InnoDB; --connect (con1,localhost,root,,test) SET DEBUG_SYNC='ib_trunc_table_trunc_completing SIGNAL committed WAIT_FOR ever'; --send TRUNCATE TABLE t1; --connection default SET DEBUG_SYNC='now WAIT_FOR committed'; --source include/restart_mysqld.inc --disconnect con1 SELECT COUNT(*) FROM t1; DROP TABLE t1;