summaryrefslogtreecommitdiff
path: root/storage/tokudb/mysql-test/rpl/r/rpl_rfr_disable_on_expl_pk_absence.result
diff options
context:
space:
mode:
Diffstat (limited to 'storage/tokudb/mysql-test/rpl/r/rpl_rfr_disable_on_expl_pk_absence.result')
-rw-r--r--storage/tokudb/mysql-test/rpl/r/rpl_rfr_disable_on_expl_pk_absence.result8
1 files changed, 8 insertions, 0 deletions
diff --git a/storage/tokudb/mysql-test/rpl/r/rpl_rfr_disable_on_expl_pk_absence.result b/storage/tokudb/mysql-test/rpl/r/rpl_rfr_disable_on_expl_pk_absence.result
index 2977dc859f5..127184a0766 100644
--- a/storage/tokudb/mysql-test/rpl/r/rpl_rfr_disable_on_expl_pk_absence.result
+++ b/storage/tokudb/mysql-test/rpl/r/rpl_rfr_disable_on_expl_pk_absence.result
@@ -1,8 +1,10 @@
include/master-slave.inc
[connection master]
call mtr.add_suppression("read free replication is disabled for tokudb table");
+connection master;
CREATE TABLE t (a int(11), b char(20)) ENGINE = TokuDB;
INSERT INTO t (a, b) VALUES (1, 'a'), (2, 'b'), (3, 'c'), (4, 'd'), (5, 'e');
+connection slave;
SELECT * FROM t;
a b
1 a
@@ -10,6 +12,7 @@ a b
3 c
4 d
5 e
+connection master;
UPDATE t SET a = a + 10 WHERE b = 'b';
SELECT * FROM t;
a b
@@ -18,6 +21,7 @@ a b
3 c
4 d
5 e
+connection slave;
SELECT * FROM t;
a b
1 a
@@ -25,6 +29,7 @@ a b
3 c
4 d
5 e
+connection master;
UPDATE t SET a = a + 10 WHERE b = 'b';
SELECT * FROM t;
a b
@@ -33,6 +38,7 @@ a b
3 c
4 d
5 e
+connection slave;
SELECT * FROM t;
a b
1 a
@@ -40,5 +46,7 @@ a b
3 c
4 d
5 e
+connection master;
DROP TABLE t;
+connection slave;
include/rpl_end.inc