2005-07-05 13:55:54 +02:00
|
|
|
# File for specialities regarding replication from or to InnoDB
|
|
|
|
# tables.
|
|
|
|
|
|
|
|
source include/master-slave.inc;
|
|
|
|
source include/have_innodb.inc;
|
|
|
|
|
|
|
|
#
|
|
|
|
# Bug#11401: Load data infile 'REPLACE INTO' fails on slave.
|
|
|
|
#
|
|
|
|
connection master;
|
|
|
|
CREATE TABLE t4 (
|
|
|
|
id INT(5) unsigned NOT NULL auto_increment,
|
|
|
|
name varchar(15) NOT NULL default '',
|
|
|
|
number varchar(35) NOT NULL default 'default',
|
|
|
|
PRIMARY KEY (id),
|
|
|
|
UNIQUE KEY unique_rec (name,number)
|
|
|
|
) ENGINE=InnoDB;
|
|
|
|
|
|
|
|
--disable_warnings
|
|
|
|
LOAD DATA
|
2006-01-24 08:30:54 +01:00
|
|
|
INFILE '../std_data_ln/loaddata_pair.dat'
|
2005-07-05 13:55:54 +02:00
|
|
|
REPLACE INTO TABLE t4
|
|
|
|
(name,number);
|
|
|
|
--enable_warnings
|
|
|
|
SELECT * FROM t4;
|
|
|
|
|
|
|
|
sync_slave_with_master;
|
|
|
|
SELECT * FROM t4;
|
|
|
|
|
|
|
|
connection master;
|
|
|
|
--disable_warnings
|
|
|
|
LOAD DATA
|
2006-01-24 08:30:54 +01:00
|
|
|
INFILE '../std_data_ln/loaddata_pair.dat'
|
2005-07-05 13:55:54 +02:00
|
|
|
REPLACE INTO TABLE t4
|
|
|
|
(name,number);
|
|
|
|
--enable_warnings
|
|
|
|
SELECT * FROM t4;
|
|
|
|
|
|
|
|
sync_slave_with_master;
|
|
|
|
SELECT * FROM t4;
|
|
|
|
|
|
|
|
connection master;
|
|
|
|
--disable_query_log
|
|
|
|
DROP TABLE t4;
|
|
|
|
--enable_query_log
|
|
|
|
sync_slave_with_master;
|
2005-07-28 02:22:47 +02:00
|
|
|
|
|
|
|
# End of 4.1 tests
|