summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorunknown <kostja@bodhi.(none)>2007-06-01 18:04:25 +0400
committerunknown <kostja@bodhi.(none)>2007-06-01 18:04:25 +0400
commit8c6d82a20ef46acbc2df4df9344802de6d55f000 (patch)
treee0a3f246f208c28d100a2d914d12f45ba61119ec
parent75c454876da59171ef5b3dfa38a978bf3ff4071f (diff)
downloadmariadb-git-8c6d82a20ef46acbc2df4df9344802de6d55f000.tar.gz
Fix a typo in the test case.
mysql-test/r/rpl_loaddata.result: Update result. mysql-test/t/rpl_loaddata.test: Fix a typo in the test file.
-rw-r--r--mysql-test/r/rpl_loaddata.result2
-rw-r--r--mysql-test/t/rpl_loaddata.test4
2 files changed, 2 insertions, 4 deletions
diff --git a/mysql-test/r/rpl_loaddata.result b/mysql-test/r/rpl_loaddata.result
index b4b8d8b9a07..be137079c7a 100644
--- a/mysql-test/r/rpl_loaddata.result
+++ b/mysql-test/r/rpl_loaddata.result
@@ -83,4 +83,4 @@ drop table t1;
CREATE TABLE t1 (word CHAR(20) NOT NULL PRIMARY KEY) ENGINE=INNODB;
LOAD DATA INFILE "../std_data_ln/words.dat" INTO TABLE t1;
ERROR 23000: Duplicate entry 'Aarhus' for key 1
-DROP TABLE IF EXISTS t1;
+DROP TABLE t1;
diff --git a/mysql-test/t/rpl_loaddata.test b/mysql-test/t/rpl_loaddata.test
index 27fa7fb95a6..a4781ed4faa 100644
--- a/mysql-test/t/rpl_loaddata.test
+++ b/mysql-test/t/rpl_loaddata.test
@@ -158,9 +158,7 @@ CREATE TABLE t1 (word CHAR(20) NOT NULL PRIMARY KEY) ENGINE=INNODB;
--error 1062
LOAD DATA INFILE "../std_data_ln/words.dat" INTO TABLE t1;
---disable warnings
-DROP TABLE IF EXISTS t1;
---enable warnings
+DROP TABLE t1;
sync_with_master;
# End of 4.1 tests