Bug #31816 | Dropping a table removes the 'write' lock on another table in the same database | ||
---|---|---|---|
Submitted: | 24 Oct 2007 14:51 | Modified: | 24 Oct 2007 16:22 |
Reporter: | Himanshu Bhutani | Email Updates: | |
Status: | Can't repeat | Impact on me: | |
Category: | MySQL Server: MyISAM storage engine | Severity: | S2 (Serious) |
Version: | 5.1.14 Beta | OS: | Any |
Assigned to: | CPU Architecture: | Any |
[24 Oct 2007 14:51]
Himanshu Bhutani
[24 Oct 2007 16:22]
MySQL Verification Team
Thank you for the bug report. I can't repeat with today source server please upgrade to latest released version or wait the next release. Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 6 Server version: 5.1.23-beta-debug Source distribution Type 'help;' or '\h' for help. Type '\c' to clear the buffer. mysql2>select * from t1 union select * from t2; ERROR 1146 (42S02): Table 'db9.t1' doesn't exist mysql2>select * from t2; mysql1>drop table t1; Query OK, 0 rows affected (0.00 sec) mysql1>show processlist; +----+------+-----------+------+---------+------+--------+------------------+ | Id | User | Host | db | Command | Time | State | Info | +----+------+-----------+------+---------+------+--------+------------------+ | 5 | root | localhost | db9 | Query | 0 | NULL | show processlist | | 6 | root | localhost | db9 | Query | 136 | Locked | select * from t2 | +----+------+-----------+------+---------+------+--------+------------------+ 2 rows in set (0.00 sec)