1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-31 22:22:30 +03:00

Fixes of system variable test programs for bug#35988.

This commit is contained in:
unknown
2008-04-11 21:59:33 +02:00
parent b00c536378
commit 5fd727f73b
25 changed files with 45 additions and 11 deletions

View File

@@ -18,7 +18,7 @@ SET @@global.local_infile = 1;
DROP TABLE IF EXISTS t1;
create table t1(a int);
LOAD DATA LOCAL INFILE
'MYSQL_TEST_DIR/std_data/numbers.txt' INTO TABLE test.t1;
'var/std_data_ln/numbers.txt' INTO TABLE test.t1;
SELECT count(*) from t1;
count(*)
9
@@ -27,7 +27,7 @@ SET @@global.local_infile = 0;
DROP TABLE IF EXISTS t1;
create table t1(a int);
LOAD DATA LOCAL INFILE
'MYSQL_TEST_DIR/std_data/numbers.txt' INTO TABLE test.t1;
'var/std_data_ln/numbers.txt' INTO TABLE test.t1;
ERROR 42000: The used command is not allowed with this MySQL version
SELECT count(*) from t1;
count(*)