1
SET SESSION STORAGE_ENGINE = InnoDB;
2
drop table if exists t1;
3
create table t1 (id int unsigned not null auto_increment primary key, a text, b text);
5
load data infile '../std_data_ln/loaddata2.dat' into table t1 fields terminated by ',' enclosed by '''' (a, b);
7
Warning 1261 Row 3 doesn't contain data for all columns
9
select count(*) from t1;
14
load data infile '../std_data_ln/loaddata2.dat' into table t1 fields terminated by ',' enclosed by '''' (a, b);
16
Warning 1261 Row 3 doesn't contain data for all columns
18
select count(*) from t1;