blob: c169dfd02282eef66728d5619211cc601aac6bab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# Test to check for the different version of truncating a table.
# The statements are "TRUNCATE tbl" and "DELETE FROM tbl". We check
# the behaviour of each possible value for BINLOG_FORMAT.
--source include/master-slave.inc
let $trunc_stmt = TRUNCATE TABLE;
--source suite/rpl/include/rpl_truncate_helper.test
let $trunc_stmt = DELETE FROM;
--source suite/rpl/include/rpl_truncate_helper.test
--source include/rpl_end.inc
|