connection node_2; connection node_1; CREATE TABLE t1 (a INT) ENGINE=InnoDB; START TRANSACTION; INSERT INTO t1 VALUES (1); LOCK TABLES t2 READ; ERROR 42S02: Table 'test.t2' doesn't exist START TRANSACTION; INSERT INTO t1 VALUES (1); LOCK TABLES t1 READ; UNLOCK TABLES; DROP TABLE t1;