summaryrefslogtreecommitdiff
path: root/mysql-test/main/windows_debug.test
blob: bb0880ddc550c6e2decf40e4a1cc22ceeab6e817 (plain)
1
2
3
4
5
6
7
8
9
10
11
# Windows-specific tests , debug mode

--source include/have_debug.inc
--source include/windows.inc

--echo # 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;

#End of 10.3 tests