~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/loaddata_autocom_innodb.result

  • Committer: Brian Aker
  • Date: 2010-01-22 00:53:13 UTC
  • Revision ID: brian@gaz-20100122005313-jmizcbcdi1lt4tcx
Revert db patch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
SET SESSION STORAGE_ENGINE = InnoDB;
2
2
drop table if exists t1;
3
 
create table t1 (id int unsigned not null auto_increment primary key, a text, b text);
 
3
create table t1 (id int not null auto_increment primary key, a text, b text);
4
4
start transaction;
5
5
load data infile '../std_data_ln/loaddata2.dat' into table t1 fields terminated by ',' enclosed by '''' (a, b);
6
 
Warnings:
7
 
Warning 1261    Row 3 doesn't contain data for all columns
8
6
commit;
9
7
select count(*) from t1;
10
8
count(*)
11
 
4
 
9
3
12
10
truncate table t1;
13
11
start transaction;
14
12
load data infile '../std_data_ln/loaddata2.dat' into table t1 fields terminated by ',' enclosed by '''' (a, b);
15
 
Warnings:
16
 
Warning 1261    Row 3 doesn't contain data for all columns
17
13
rollback;
18
14
select count(*) from t1;
19
15
count(*)