mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
loaddata.result, loaddata.test:
A test case is corrected. mysql-test/t/loaddata.test: A test case is corrected. mysql-test/r/loaddata.result: A test case is corrected.
This commit is contained in:
@ -171,7 +171,7 @@ insert into t2 values(1),(2);
|
|||||||
Warnings:
|
Warnings:
|
||||||
Warning 1261 Row 1 doesn't contain data for all columns
|
Warning 1261 Row 1 doesn't contain data for all columns
|
||||||
Warning 1261 Row 2 doesn't contain data for all columns
|
Warning 1261 Row 2 doesn't contain data for all columns
|
||||||
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;
|
||||||
f1
|
f1
|
||||||
1
|
1
|
||||||
2
|
2
|
||||||
@ -179,7 +179,7 @@ delete from t1;
|
|||||||
Warnings:
|
Warnings:
|
||||||
Warning 1261 Row 1 doesn't contain data for all columns
|
Warning 1261 Row 1 doesn't contain data for all columns
|
||||||
Warning 1261 Row 2 doesn't contain data for all columns
|
Warning 1261 Row 2 doesn't contain data for all columns
|
||||||
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;
|
||||||
f1
|
f1
|
||||||
1
|
1
|
||||||
2
|
2
|
||||||
|
@ -164,7 +164,7 @@ disable_query_log;
|
|||||||
eval select * into outfile '$MYSQLTEST_VARDIR/tmp/t2' from t2;
|
eval select * into outfile '$MYSQLTEST_VARDIR/tmp/t2' from t2;
|
||||||
eval load data infile '$MYSQLTEST_VARDIR/tmp/t2' into table t1;
|
eval load data infile '$MYSQLTEST_VARDIR/tmp/t2' into table t1;
|
||||||
enable_query_log;
|
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
|
--exec rm $MYSQLTEST_VARDIR/tmp/t2
|
||||||
delete from t1;
|
delete from t1;
|
||||||
disable_query_log;
|
disable_query_log;
|
||||||
@ -174,7 +174,7 @@ FROM t2;
|
|||||||
eval load data infile '$MYSQLTEST_VARDIR/tmp/t2' into table t1
|
eval load data infile '$MYSQLTEST_VARDIR/tmp/t2' into table t1
|
||||||
FIELDS TERMINATED BY '' OPTIONALLY ENCLOSED BY '' LINES TERMINATED BY '\r\n';
|
FIELDS TERMINATED BY '' OPTIONALLY ENCLOSED BY '' LINES TERMINATED BY '\r\n';
|
||||||
enable_query_log;
|
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
|
--exec rm $MYSQLTEST_VARDIR/tmp/t2
|
||||||
drop table t1,t2;
|
drop table t1,t2;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user