diff options
author | unknown <msvensson@neptunus.(none)> | 2006-02-14 17:15:24 +0100 |
---|---|---|
committer | unknown <msvensson@neptunus.(none)> | 2006-02-14 17:15:24 +0100 |
commit | 1a9c96c58c555245a8e44824795a8ac5d46581fe (patch) | |
tree | 2b152a9c13f7881e23addeb8fa425067cdf44355 /mysql-test/t/ndb_load.test | |
parent | 3c9952a1ae437eacb7f52a5e9519d63b410d4424 (diff) | |
download | mariadb-git-1a9c96c58c555245a8e44824795a8ac5d46581fe.tar.gz |
Change from std_data to std_data_ln
Diffstat (limited to 'mysql-test/t/ndb_load.test')
-rw-r--r-- | mysql-test/t/ndb_load.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/t/ndb_load.test b/mysql-test/t/ndb_load.test index 72a5b53eaad..af2df70b74e 100644 --- a/mysql-test/t/ndb_load.test +++ b/mysql-test/t/ndb_load.test @@ -12,12 +12,12 @@ DROP TABLE IF EXISTS t1; # should give duplicate key CREATE TABLE t1 (word CHAR(20) NOT NULL PRIMARY KEY) ENGINE=NDB; --error 1022 -LOAD DATA INFILE '../../std_data/words.dat' INTO TABLE t1 ; +LOAD DATA INFILE '../std_data_ln/words.dat' INTO TABLE t1 ; DROP TABLE t1; # now without a primary key we should be ok CREATE TABLE t1 (word CHAR(20) NOT NULL) ENGINE=NDB; -LOAD DATA INFILE '../../std_data/words.dat' INTO TABLE t1 ; +LOAD DATA INFILE '../std_data_ln/words.dat' INTO TABLE t1 ; SELECT * FROM t1 ORDER BY word; DROP TABLE t1; |