summaryrefslogtreecommitdiffstats
path: root/mysql-test/suite/storage_engine/lock_concurrent.result
blob: 9b1a1a2d7e41b9e6fdad9f35b841414f6da788a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
SET lock_wait_timeout = 1;
CREATE TABLE t1 (a <INT_COLUMN>) ENGINE=<STORAGE_ENGINE> <CUSTOM_TABLE_OPTIONS>;
LOCK TABLES t1 WRITE CONCURRENT, t1 AS t2 READ;
connect  con1,localhost,root,,;
SET lock_wait_timeout = 1;
LOCK TABLES t1 READ LOCAL;
UNLOCK TABLES;
connection default;
UNLOCK TABLES;
connection con1;
LOCK TABLES t1 READ LOCAL;
connection default;
LOCK TABLES t1 WRITE CONCURRENT, t1 AS t2 READ;
UNLOCK TABLES;
connection con1;
UNLOCK TABLES;
disconnect con1;
connection default;
DROP TABLE t1;