diff options
Diffstat (limited to 'mysql-test/extra/rpl_tests/rpl_loaddata.test')
-rw-r--r-- | mysql-test/extra/rpl_tests/rpl_loaddata.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/extra/rpl_tests/rpl_loaddata.test b/mysql-test/extra/rpl_tests/rpl_loaddata.test index e58908ec7e9..111b66ff7fe 100644 --- a/mysql-test/extra/rpl_tests/rpl_loaddata.test +++ b/mysql-test/extra/rpl_tests/rpl_loaddata.test @@ -130,7 +130,7 @@ connection master; reset master; eval create table t2 (day date,id int(9),category enum('a','b','c'),name varchar(60), unique(day)) engine=$engine_type; # no transactions ---error 1062 +--error ER_DUP_ENTRY_WITH_KEY_NAME load data infile '../std_data_ln/rpl_loaddata2.dat' into table t2 fields terminated by ',' optionally enclosed by '%' escaped by '@' lines terminated by '\n##\n' starting by '>' ignore 1 lines; @@ -146,7 +146,7 @@ select * from t2; alter table t2 drop key day; connection master; delete from t2; ---error 1062 +--error ER_DUP_ENTRY_WITH_KEY_NAME load data infile '../std_data_ln/rpl_loaddata2.dat' into table t2 fields terminated by ',' optionally enclosed by '%' escaped by '@' lines terminated by '\n##\n' starting by '>' ignore 1 lines; |