summaryrefslogtreecommitdiff
path: root/mysql-test/suite/rpl/r/rpl_row_trunc_temp.result
blob: c753e29bd87a2347ac6762596a1224f2107234e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
include/master-slave.inc
[connection master]
CREATE TEMPORARY TABLE t1(c1 INTEGER);
CREATE TABLE t2(c1 INTEGER);
connection slave;
CREATE TABLE t1(c1 INTEGER);
INSERT INTO t1 VALUES(1), (2);
INSERT INTO t2 VALUES(1), (2);
SELECT * FROM t1;
c1
1
2
SELECT * FROM t2;
c1
1
2
connection master;
TRUNCATE t1;
TRUNCATE t2;
connection slave;
SELECT * FROM t1;
c1
1
2
SELECT * FROM t2;
c1
DROP TABLE t1;
connection master;
DROP TABLE t2;
include/rpl_end.inc