blob: 4ddcd53d5c8098dd12730ff2b70f3337984989a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# TODO: Only run this if we have privilege to do flush table
#
# Test of flush table
#
#drop table if exists t1;
#create table t1 (a int not null auto_increment primary key);
#insert into t1 values(0);
#lock table t1 read;
#flush table t1;
#check table t1;
#drop table t1;
|