mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
MDEV-28820 MyISAM wrong server status flags
MyISAM tables no longer take transactional metadata locks unless there already is an active transaction.
This commit is contained in:
@ -18,14 +18,14 @@ connect con2, localhost, root;
|
||||
connection default;
|
||||
CREATE SCHEMA schema1;
|
||||
CREATE TABLE schema1.t1 (a INT);
|
||||
SET autocommit= FALSE;
|
||||
START TRANSACTION;
|
||||
INSERT INTO schema1.t1 VALUES (1);
|
||||
connection con2;
|
||||
DROP SCHEMA schema1;
|
||||
connection default;
|
||||
ALTER SCHEMA schema1 DEFAULT CHARACTER SET utf8;
|
||||
Got one of the listed errors
|
||||
SET autocommit= TRUE;
|
||||
COMMIT;
|
||||
connection con2;
|
||||
connection default;
|
||||
disconnect con2;
|
||||
|
Reference in New Issue
Block a user