diff options
author | epotemkin@bk-internal.mysql.com <> | 2007-05-09 12:55:05 +0200 |
---|---|---|
committer | epotemkin@bk-internal.mysql.com <> | 2007-05-09 12:55:05 +0200 |
commit | b0b4fecb99f2b0ef0a250f60f8280ef6633f063c (patch) | |
tree | 95e7aabe5ec7c9b5a90f8e5d0a1048efd59d15ac /mysql-test/t/loaddata.test | |
parent | e4af9fc7905e9eb734ec68e136788af0761b4db4 (diff) | |
parent | b66298f455d61430a496f21004c85c8f46dcfdea (diff) | |
download | mariadb-git-b0b4fecb99f2b0ef0a250f60f8280ef6633f063c.tar.gz |
Merge bk-internal.mysql.com:/data0/bk/mysql-5.0-opt
into bk-internal.mysql.com:/data0/bk/mysql-5.1-opt
Diffstat (limited to 'mysql-test/t/loaddata.test')
-rw-r--r-- | mysql-test/t/loaddata.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/t/loaddata.test b/mysql-test/t/loaddata.test index ba0edc341b0..51f5e5135e6 100644 --- a/mysql-test/t/loaddata.test +++ b/mysql-test/t/loaddata.test @@ -168,7 +168,7 @@ disable_query_log; eval select * into outfile '$MYSQLTEST_VARDIR/tmp/t2' from t2; eval load data infile '$MYSQLTEST_VARDIR/tmp/t2' into table t1; enable_query_log; -select f1 from t1 where f2 <> '0000-00-00 00:00:00'; +select f1 from t1 where f2 <> '0000-00-00 00:00:00' order by f1; --exec rm $MYSQLTEST_VARDIR/tmp/t2 delete from t1; disable_query_log; @@ -178,7 +178,7 @@ FROM t2; eval load data infile '$MYSQLTEST_VARDIR/tmp/t2' into table t1 FIELDS TERMINATED BY '' OPTIONALLY ENCLOSED BY '' LINES TERMINATED BY '\r\n'; enable_query_log; -select f1 from t1 where f2 <> '0000-00-00 00:00:00'; +select f1 from t1 where f2 <> '0000-00-00 00:00:00' order by f1; --exec rm $MYSQLTEST_VARDIR/tmp/t2 drop table t1,t2; |