mirror of
https://github.com/MariaDB/server.git
synced 2025-02-01 03:21:53 +01:00
25 lines
701 B
Text
25 lines
701 B
Text
|
#
|
||
|
# Test of REPLACE with replication
|
||
|
#
|
||
|
|
||
|
source include/master-slave.inc;
|
||
|
|
||
|
#
|
||
|
# Test of doing replace on unique key on table with auto_increment
|
||
|
#
|
||
|
|
||
|
drop table if exists t1;
|
||
|
CREATE TABLE t1 (pr_id int(10) unsigned NOT NULL AUTO_INCREMENT PRIMARY KEY, pr_page int(11) NOT NULL, pr_type varbinary(60) NOT NULL, test int, UNIQUE KEY pr_pagetype (pr_page,pr_type)) ENGINE=myisam AUTO_INCREMENT=136;
|
||
|
insert into t1 (pr_page, pr_type, test) values(1,"one",0),(2,"two",0);
|
||
|
select * from t1;
|
||
|
replace into t1 (pr_page, pr_type,test) values(1,"one",2);
|
||
|
select * from t1;
|
||
|
sync_slave_with_master;
|
||
|
connection slave;
|
||
|
select * from t1;
|
||
|
connection master;
|
||
|
drop table t1;
|
||
|
|
||
|
# End of 5.5 tests
|
||
|
--source include/rpl_end.inc
|