Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
None
-
None
Description
The application issued 20 session on the same time to drop the table and it should only one session successful. however there are 2 session report successfully.
Session 1:
start transaction;
START TRANSACTION
drop table tran_test;
DROP TABLE
commit;
COMMIT
session 4:
start transaction;
START TRANSACTION
drop table tran_test;
DROP TABLE
commit;
COMMIT