~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/heap_auto_increment.test

  • Committer: Brian Aker
  • Date: 2010-02-14 01:56:51 UTC
  • mto: (1273.16.5 fix_is)
  • mto: This revision was merged to the branch mainline in revision 1300.
  • Revision ID: brian@gaz-20100214015651-ror9j0xu7dccz0ct
Two fixes for "make dist"

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
insert into t1 values (NULL,5),(NULL,6);
13
13
select * from t1;
14
14
delete from t1 where a=6;
 
15
#show table status like "t1";
15
16
replace t1 values (3,1);
16
17
ALTER TABLE t1 add c int;
17
18
replace t1 values (3,3,3);