You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Bug #27208858 CONCURRENT DDL/DML ON FOREIGN KEYS CRASH IN PAGE_CUR_SEARCH_WITH_MATCH_BYTES
PROBLEM
-------
1. During truncate when we are trying to flush out the pages
of truncated table form the buffer pool we release the dict lock.
2. At this stage a DDL request to add a FK constraint from another
connection,tries to access the stale index memory object of the
parent table and asserts.
FIX
---
Disallow the DDL operation of adding FK when parent table is
undergoing truncate .
[#rb 19433 Reviewed by Jimmy ]
0 commit comments