~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/innodb.test

  • Committer: Brian Aker
  • Date: 2009-11-26 18:48:20 UTC
  • mfrom: (1226.1.3 push)
  • Revision ID: brian@gaz-20091126184820-hltr0upee0ahopsj
Bundle Brian + Monty  (been through staging, just collecting it as want
overall patch as seen by staging).

Show diffs side-by-side

added added

removed removed

Lines of Context:
67
67
explain select level,id,parent_id from t1 where level=1;
68
68
select level,id from t1 where level=1;
69
69
select level,id,parent_id from t1 where level=1;
70
 
optimize table t1;
 
70
alter table t1 ENGINE=innodb;
71
71
--replace_column 7 #
72
72
show keys from t1;
73
73
drop table t1;
94
94
 
95
95
create table t1 (a int) engine=innodb;
96
96
insert into t1 values (1), (2);
97
 
optimize table t1;
 
97
alter table t1 engine=innodb;
98
98
delete from t1 where a = 1;
99
99
select * from t1;
100
100
check table t1;
430
430
create table t1 (a varchar(100) not null, primary key(a), b int not null) engine=innodb;
431
431
insert into t1 values("hello",1),("world",2);
432
432
select * from t1 order by b desc;
433
 
optimize table t1;
 
433
alter table t1 engine=innodb;
434
434
--replace_column 7 #
435
435
show keys from t1;
436
436
drop table t1;
1857
1857
CREATE TABLE t1 ( a int ) ENGINE=innodb;
1858
1858
BEGIN;
1859
1859
INSERT INTO t1 VALUES (1);
1860
 
OPTIMIZE TABLE t1;
 
1860
ALTER TABLE t1 ENGINE=innodb;
1861
1861
DROP TABLE t1;
1862
1862
 
1863
1863
#