Commit ac41e1c2 authored by Rich Prohaska's avatar Rich Prohaska

#110 test cases for replace into with replication

parent a35427dc
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
select * from testr;
pk num txt
1 1 one
2 2 twotwo
3 3 three
4 4 four
drop table testr;
include/rpl_end.inc
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
select * from testr;
pk num txt
1 1 one
2 2 twotwo
3 3 three
4 4 four
drop table testr;
include/rpl_end.inc
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
select * from testr;
pk num txt
1 1 one
2 2 twotwo
3 3 three
4 4 four
drop table testr;
include/rpl_end.inc
source include/have_tokudb.inc;
source include/master-slave.inc;
source include/have_binlog_format_mixed.inc;
set default_storage_engine='tokudb';
disable_warnings;
drop table if exists testr;
enable_warnings;
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;
save_master_pos;
connection slave;
sync_with_master;
select * from testr;
connection master;
drop table testr;
source include/rpl_end.inc;
source include/have_tokudb.inc;
source include/master-slave.inc;
source include/have_binlog_format_row.inc;
set default_storage_engine='tokudb';
disable_warnings;
drop table if exists testr;
enable_warnings;
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;
save_master_pos;
connection slave;
sync_with_master;
select * from testr;
connection master;
drop table testr;
source include/rpl_end.inc;
source include/have_tokudb.inc;
source include/master-slave.inc;
source include/have_binlog_format_statement.inc;
set default_storage_engine='tokudb';
disable_warnings;
drop table if exists testr;
enable_warnings;
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;
save_master_pos;
connection slave;
sync_with_master;
select * from testr;
connection master;
drop table testr;
source include/rpl_end.inc;
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment