mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 04:53:01 +01:00
8deb6616bc
Bug #17158 load data infile of char values into table of char with no (PK) fails to load Bug #17081 Doing "LOAD DATA INFILE" directly after delete can cause missing data mysql-test/r/ndb_load.result: New BitKeeper file ``mysql-test/r/ndb_load.result'' mysql-test/t/ndb_load.test: New BitKeeper file ``mysql-test/t/ndb_load.test''
24 lines
590 B
Text
24 lines
590 B
Text
-- source include/have_ndb.inc
|
|
-- source include/not_embedded.inc
|
|
|
|
--disable_warnings
|
|
DROP TABLE IF EXISTS t1;
|
|
--enable_warnings
|
|
|
|
#
|
|
# Basic test for different types of loading data
|
|
#
|
|
|
|
# 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 ;
|
|
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 ;
|
|
SELECT * FROM t1 ORDER BY word;
|
|
DROP TABLE t1;
|
|
|
|
# End of 4.1 tests
|