blob: a4f12886120a72a71f69e41d466f33b88d0f486b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# TODO: Only run this if we have privilege to do flush table
#
# Test of flush table
#
#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;
|