diff options
author | mats@mysql.com <> | 2005-07-05 13:55:54 +0200 |
---|---|---|
committer | mats@mysql.com <> | 2005-07-05 13:55:54 +0200 |
commit | 6d924c8286237413f7347e07e4b4dfcfd5e3dff2 (patch) | |
tree | 435fc6931826a8e0903cc525eb1e2f124332a3f3 /mysql-test/t/rpl_innodb.test | |
parent | 15d4217c58d9e0c9410cff518cd5cd7fc5fd7c6a (diff) | |
download | mariadb-git-6d924c8286237413f7347e07e4b4dfcfd5e3dff2.tar.gz |
Bug#11401: Setting thd->lex so that engines (i.e., InnoDB) recognizes
this as a LOAD DATA ... REPLACE INTO .. statement.
Diffstat (limited to 'mysql-test/t/rpl_innodb.test')
-rw-r--r-- | mysql-test/t/rpl_innodb.test | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/mysql-test/t/rpl_innodb.test b/mysql-test/t/rpl_innodb.test new file mode 100644 index 00000000000..b171dced26e --- /dev/null +++ b/mysql-test/t/rpl_innodb.test @@ -0,0 +1,46 @@ +# 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 + INFILE '../../std_data/loaddata_pair.dat' + REPLACE INTO TABLE t4 + (name,number); +--enable_warnings +SELECT * FROM t4; + +sync_slave_with_master; +SELECT * FROM t4; + +connection master; +--disable_warnings +LOAD DATA + INFILE '../../std_data/loaddata_pair.dat' + 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; |