~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/flush_table.result

  • Committer: Brian Aker
  • Date: 2009-05-15 07:55:30 UTC
  • mfrom: (991.1.5 for-brian)
  • Revision ID: brian@gaz-20090515075530-ics1z7f23hrjy3av
MErge Stewart

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
drop table if exists t1,t2;
2
2
create table t1 (a int not null auto_increment primary key);
3
 
insert into t1 values(0);
 
3
insert into t1 values(NULL);
4
4
lock table t1 read;
5
5
flush table t1;
6
6
check table t1;