1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Update path to the load_file

mysql-test/include/wait_show_pattern.inc:
  Guard against ' in $result
This commit is contained in:
unknown
2007-12-20 18:38:23 +01:00
parent b981448e5d
commit 4933a62af6
6 changed files with 11 additions and 6 deletions

View File

@ -12,7 +12,7 @@ create table t1(n int not null auto_increment primary key)ENGINE=MyISAM;
insert into t1 values (NULL);
drop table t1;
create table t1 (word char(20) not null)ENGINE=MyISAM;
load data infile '../../std_data/words.dat' into table t1 ignore 1 lines;
load data infile 'LOAD_FILE' into table t1 ignore 1 lines;
select count(*) from t1;
count(*)
69