diff options
Diffstat (limited to 'mysql-test/r/local_infile_func.result')
-rw-r--r-- | mysql-test/r/local_infile_func.result | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/r/local_infile_func.result b/mysql-test/r/local_infile_func.result index 52b922bc6d9..66a1e5544fb 100644 --- a/mysql-test/r/local_infile_func.result +++ b/mysql-test/r/local_infile_func.result @@ -18,7 +18,7 @@ SET @@global.local_infile = 1; DROP TABLE IF EXISTS t1; create table t1(a int); LOAD DATA LOCAL INFILE -'MYSQLTEST_VARDIR/std_data_ln/numbers.txt' INTO TABLE test.t1; +'MYSQLTEST_VARDIR/std_data/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 -'MYSQLTEST_VARDIR/std_data_ln/numbers.txt' INTO TABLE test.t1; +'MYSQLTEST_VARDIR/std_data/numbers.txt' INTO TABLE test.t1; ERROR 42000: The used command is not allowed with this MySQL version SELECT count(*) from t1; count(*) |