~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/auto_increment_update.result

  • Committer: Brian Aker
  • Date: 2010-05-28 01:36:09 UTC
  • Revision ID: brian@gaz-20100528013609-lvsd6znyufrpmddk
Rollup patch for hiding tableshare.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
create table t1 (a int not null auto_increment primary key, val int);
2
 
insert into t1 (val) values (1);
3
 
update t1 set a=2 where a=1;
4
 
insert into t1 (val) values (1);
5
 
drop table t1;