Fix race condition of concurrent RENAME and SHOW TABLES which caused

random test failures.
This commit is contained in:
kroki@mysql.com 2006-05-06 09:41:24 +04:00
parent a86d1c082f
commit aeb75a2e41

View File

@ -61,9 +61,15 @@ connection con2;
sleep 1;
show tables;
UNLOCK TABLES;
sleep 1;
connection con1;
reap;
connection con2;
show tables;
drop table t2, t4;
disconnect con2;
disconnect con1;
connection default;
# End of 4.1 tests