Commit 4688ace2 authored by kostja@bodhi.(none)'s avatar kostja@bodhi.(none)

Fix a typo in the test case.

parent d97db648
...@@ -83,4 +83,4 @@ drop table t1; ...@@ -83,4 +83,4 @@ drop table t1;
CREATE TABLE t1 (word CHAR(20) NOT NULL PRIMARY KEY) ENGINE=INNODB; CREATE TABLE t1 (word CHAR(20) NOT NULL PRIMARY KEY) ENGINE=INNODB;
LOAD DATA INFILE "../std_data_ln/words.dat" INTO TABLE t1; LOAD DATA INFILE "../std_data_ln/words.dat" INTO TABLE t1;
ERROR 23000: Duplicate entry 'Aarhus' for key 1 ERROR 23000: Duplicate entry 'Aarhus' for key 1
DROP TABLE IF EXISTS t1; DROP TABLE t1;
...@@ -158,9 +158,7 @@ CREATE TABLE t1 (word CHAR(20) NOT NULL PRIMARY KEY) ENGINE=INNODB; ...@@ -158,9 +158,7 @@ CREATE TABLE t1 (word CHAR(20) NOT NULL PRIMARY KEY) ENGINE=INNODB;
--error 1062 --error 1062
LOAD DATA INFILE "../std_data_ln/words.dat" INTO TABLE t1; LOAD DATA INFILE "../std_data_ln/words.dat" INTO TABLE t1;
--disable warnings DROP TABLE t1;
DROP TABLE IF EXISTS t1;
--enable warnings
sync_with_master; sync_with_master;
# End of 4.1 tests # End of 4.1 tests
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