summaryrefslogtreecommitdiff
path: root/mysql-test/t/ndb_load.test
diff options
context:
space:
mode:
authorunknown <msvensson@neptunus.(none)>2006-02-14 17:15:24 +0100
committerunknown <msvensson@neptunus.(none)>2006-02-14 17:15:24 +0100
commit1a9c96c58c555245a8e44824795a8ac5d46581fe (patch)
tree2b152a9c13f7881e23addeb8fa425067cdf44355 /mysql-test/t/ndb_load.test
parent3c9952a1ae437eacb7f52a5e9519d63b410d4424 (diff)
downloadmariadb-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.test4
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;