summaryrefslogtreecommitdiff
path: root/mysql-test/r
diff options
context:
space:
mode:
authorunknown <jimw@mysql.com>2005-10-21 19:54:34 -0700
committerunknown <jimw@mysql.com>2005-10-21 19:54:34 -0700
commit1c9783e854965376844a021ab1312b373852f287 (patch)
treeb7f74e7c4e56e86f373cfe8c4fa63e88f52ee0ca /mysql-test/r
parent2750dc8766017ddc6cbb13d25198df4477eb2a14 (diff)
downloadmariadb-git-1c9783e854965376844a021ab1312b373852f287.tar.gz
Fix merge of test that left out a drop table.
mysql-test/r/loaddata.result: Update esults mysql-test/t/loaddata.test: Add missing drop table
Diffstat (limited to 'mysql-test/r')
-rw-r--r--mysql-test/r/loaddata.result1
1 files changed, 1 insertions, 0 deletions
diff --git a/mysql-test/r/loaddata.result b/mysql-test/r/loaddata.result
index 85de8728bd7..e1076cd3072 100644
--- a/mysql-test/r/loaddata.result
+++ b/mysql-test/r/loaddata.result
@@ -76,6 +76,7 @@ select * from t1;
id
0
SET @@SQL_MODE=@OLD_SQL_MODE;
+drop table t1;
create table t1 (a varchar(20), b varchar(20));
load data infile '../../std_data/loaddata5.dat' into table t1 fields terminated by ',' enclosed by '"' escaped by '"' (a,b);
select * from t1;