~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/flush_table.test

  • 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:
8
8
drop table if exists t1,t2;
9
9
--enable_warnings
10
10
create table t1 (a int not null auto_increment primary key);
11
 
insert into t1 values(0);
 
11
insert into t1 values(NULL);
12
12
 
13
13
# Test for with read lock + flush
14
14