~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/auto_increment.test

Merging change info_schema changes.

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
 
#show table status like "t1";
 
16
show table status like "t1";
17
17
replace t1 values (3,1);
18
18
ALTER TABLE t1 add c int;
19
19
replace t1 values (3,3,3);