1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# TODO: Only run this if we have privilege to do flush table
#
# Test of flush table
#
#
# Bug #11934 Two sequential FLUSH TABLES WITH READ LOCK hangs client
#
FLUSH TABLES WITH READ LOCK ;
FLUSH TABLES WITH READ LOCK ;
UNLOCK TABLES;
# End of 4.1 tests
|