Bug #64478 | CREATE TABLE IF NOT EXISTS waits for table metadata lock | ||
---|---|---|---|
Submitted: | 28 Feb 2012 2:20 | Modified: | 17 Apr 2012 8:24 |
Reporter: | Ryan Lowe | Email Updates: | |
Status: | Duplicate | Impact on me: | |
Category: | MySQL Server: Locking | Severity: | S2 (Serious) |
Version: | 5.5.19, 5.5.21 | OS: | Any |
Assigned to: | CPU Architecture: | Any |
[28 Feb 2012 2:20]
Ryan Lowe
[28 Feb 2012 7:33]
Valeriy Kravchuk
This is easy to verify: C:\Program Files\MySQL\MySQL Server 5.5\bin>mysql -uroot -proot test Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 13 Server version: 5.5.21 MySQL Community Server (GPL) Copyright (c) 2000, 2011, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. mysql> create table if not exists t1(c1 char(10)); Query OK, 0 rows affected, 1 warning (38.48 sec) mysql> show warnings\G *************************** 1. row *************************** Level: Note Code: 1050 Message: Table 't1' already exists 1 row in set (0.00 sec) So, it waits for the lock just to produce obvious output. I am not 100% sure it's a bug, as we can, for example, wait for DROP TABLE t1 running, and theoretically in this case we can proceed with create table after waiting... Let developers decide.
[17 Apr 2012 8:24]
Ståle Deraas
Duplicate of bug#63144