mirror of
https://github.com/MariaDB/server.git
synced 2025-04-19 05:35:33 +02:00

Updated tests: cases with bugs or which cannot be run with the cursor-protocol were excluded with "--disable_cursor_protocol"/"--enable_cursor_protocol" Fix for v.10.5
19 lines
722 B
Text
19 lines
722 B
Text
--disable_warnings
|
|
DROP TABLE IF EXISTS t1;
|
|
--enable_warnings
|
|
CREATE TABLE t1 (c1 INTEGER NOT NULL PRIMARY KEY, c2 VARCHAR(10));
|
|
LOAD DATA LOCAL INFILE 'suite/engines/funcs/t/load_quote.inc' INTO TABLE t1 FIELDS TERMINATED BY ',' ENCLOSED BY '\'' LINES TERMINATED BY '\n';
|
|
--disable_query_log
|
|
--disable_cursor_protocol
|
|
eval SELECT * INTO OUTFILE '$MYSQLTEST_VARDIR/tmp/t1.dat' FIELDS ENCLOSED BY '\'' FROM t1;
|
|
--enable_cursor_protocol
|
|
--enable_query_log
|
|
SELECT * FROM t1 ORDER BY c1;
|
|
TRUNCATE TABLE t1;
|
|
--disable_query_log
|
|
eval LOAD DATA INFILE '$MYSQLTEST_VARDIR/tmp/t1.dat' INTO TABLE t1 FIELDS ENCLOSED BY '\'';
|
|
--enable_query_log
|
|
SELECT * FROM t1 ORDER BY c1;
|
|
remove_file $MYSQLTEST_VARDIR/tmp/t1.dat;
|
|
DROP TABLE t1;
|
|
|