~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/innodb.test

  • Committer: Brian Aker
  • Date: 2009-08-18 07:20:29 UTC
  • mfrom: (1117.1.9 merge)
  • Revision ID: brian@gaz-20090818072029-s9ch5lcmltxwidn7
Merge of Brian

Show diffs side-by-side

added added

removed removed

Lines of Context:
829
829
ON (t2.id = lbl.id_object) INNER JOIN t1 ON (t2.id = t1.id_object);
830
830
drop table t1,t2;
831
831
 
832
 
create TEMPORARY table t1 (a int, b varchar(200), c text not null) checksum=1 engine=myisam;
833
 
create table t2 (a int, b varchar(200), c text not null) checksum=0 engine=innodb;
834
 
create table t3 (a int, b varchar(200), c text not null) checksum=1 engine=innodb;
 
832
create TEMPORARY table t1 (a int, b varchar(200), c text not null)  engine=myisam;
 
833
create table t2 (a int, b varchar(200), c text not null) engine=innodb;
 
834
create table t3 (a int, b varchar(200), c text not null) engine=innodb;
835
835
insert t1 values (1, "aaa", "bbb"), (NULL, "", "ccccc"), (0, NULL, "");
836
836
insert t2 select * from t1;
837
837
insert t3 select * from t1;