1
# Test that if we do a flush table, and in other connections do block like
2
# tasks, that nothing crashes/etc.
6
DROP TABLE IF EXISTS t1;
10
connect (con1, localhost, root,,);
11
connect (con2, localhost, root,,);
14
CREATE TABLE t1 (a serial);
17
SEND select * from t1 for update;