summaryrefslogtreecommitdiff
path: root/mysql-test/extra/binlog_tests/binlog_truncate.test
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/extra/binlog_tests/binlog_truncate.test')
-rw-r--r--mysql-test/extra/binlog_tests/binlog_truncate.test5
1 files changed, 0 insertions, 5 deletions
diff --git a/mysql-test/extra/binlog_tests/binlog_truncate.test b/mysql-test/extra/binlog_tests/binlog_truncate.test
index d434f792db0..4d297cd2d5c 100644
--- a/mysql-test/extra/binlog_tests/binlog_truncate.test
+++ b/mysql-test/extra/binlog_tests/binlog_truncate.test
@@ -39,29 +39,24 @@ if ($before_truncate) {
eval $before_truncate;
}
---echo # Connection: default
BEGIN;
INSERT INTO t2 SELECT * FROM t1;
connect (truncate,localhost,root,,);
---echo # Connection: truncate
send TRUNCATE TABLE t1;
connection default;
---echo # Connection: default
INSERT INTO t2 SELECT * FROM t1;
SELECT COUNT(*) FROM t2;
COMMIT;
connection truncate;
---echo # Connection: truncate
--echo # Reaping TRUNCATE TABLE
--reap
SELECT COUNT(*) FROM t1;
SELECT COUNT(*) FROM t2;
connection default;
---echo # Connection: default
source include/show_binlog_events.inc;
disconnect truncate;