mariadb/mysql-test/main/windows_debug.result

11 lines
295 B
Text
Raw Normal View History

# mdev-23741 sharing violation when renaming .frm file in ALTER
SET @saved_dbug = @@SESSION.debug_dbug;
SET debug_dbug='+d,file_sharing_violation';
CREATE TABLE t(i int) ENGINE=ARIA;
ALTER TABLE t ADD PRIMARY KEY (i);
FLUSH TABLES t;
SELECT * FROM t;
i
DROP TABLE t;
SET debug_dbug=@saved_dbug;