summaryrefslogtreecommitdiff
path: root/storage/tokudb/mysql-test/rpl/r/rpl_row_replace_into.result
diff options
context:
space:
mode:
Diffstat (limited to 'storage/tokudb/mysql-test/rpl/r/rpl_row_replace_into.result')
-rw-r--r--storage/tokudb/mysql-test/rpl/r/rpl_row_replace_into.result23
1 files changed, 23 insertions, 0 deletions
diff --git a/storage/tokudb/mysql-test/rpl/r/rpl_row_replace_into.result b/storage/tokudb/mysql-test/rpl/r/rpl_row_replace_into.result
new file mode 100644
index 00000000000..abe80743f62
--- /dev/null
+++ b/storage/tokudb/mysql-test/rpl/r/rpl_row_replace_into.result
@@ -0,0 +1,23 @@
+include/master-slave.inc
+[connection master]
+set default_storage_engine='tokudb';
+drop table if exists testr;
+CREATE TABLE testr (pk int(11) NOT NULL AUTO_INCREMENT, num int(11) DEFAULT NULL, txt varchar(32) DEFAULT NULL, PRIMARY KEY (pk) );
+INSERT INTO testr VALUES (1,1,'one'),(2,2,'two'),(3,3,'three'),(4,4,'four');
+replace into testr values (2,2,'twotwo');
+select * from testr;
+pk num txt
+1 1 one
+2 2 twotwo
+3 3 three
+4 4 four
+connection slave;
+select * from testr;
+pk num txt
+1 1 one
+2 2 twotwo
+3 3 three
+4 4 four
+connection master;
+drop table testr;
+include/rpl_end.inc