~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/auto_increment.test

Reverted my change to interval_list

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
insert into t1 values (NULL,5),(NULL,6);
14
14
select * from t1;
15
15
delete from t1 where a=6;
16
 
--replace_column 1 #  6 # 7 # 8 # 9 # 10 #
17
 
show table status like "t1";
 
16
#show table status like "t1";
18
17
replace t1 values (3,1);
19
18
ALTER TABLE t1 add c int;
20
19
replace t1 values (3,3,3);
88
87
select * from t1;
89
88
drop table t1;
90
89
 
91
 
create temporary table t1 (a int not null auto_increment primary key) /*!40102 engine=MEMORY */;
 
90
create table t1 (a int not null auto_increment primary key) /*!40102 engine=heap */;
92
91
insert into t1 values (NULL);
93
92
insert into t1 values (-1);
94
93
select last_insert_id();