summaryrefslogtreecommitdiff
path: root/mysql-test/main/mdev19198.result
blob: 77c08ca0fb78b8ac8193e494ffabdf530f532dfb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
CREATE TABLE t1 (c INT);
CREATE TABLE t2 (c INT);
LOCK TABLES t1 WRITE, t2 READ;
CREATE TABLE IF NOT EXISTS t1 LIKE t2;
Warnings:
Note	1050	Table 't1' already exists
UNLOCK TABLES;
LOCK TABLES t1 READ , t2 READ;
CREATE TABLE IF NOT EXISTS t1 LIKE t2;
ERROR HY000: Table 't1' was locked with a READ lock and can't be updated
UNLOCK TABLES;
CREATE TABLE IF NOT EXISTS t1 LIKE t2;
Warnings:
Note	1050	Table 't1' already exists
DROP TABLES t1,t2;