mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 20:42:30 +01:00
4 lines
195 B
Text
4 lines
195 B
Text
# mdev-23741 sharing violation when renaming .frm file in ALTER
|
|
CREATE TABLE t(i int);
|
|
SET STATEMENT debug_dbug='+d,rename_sharing_violation' FOR ALTER TABLE t ADD PRIMARY KEY (i);
|
|
DROP TABLE t;
|