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 #26492721 MYSQL/INNODB CRASHES DURING ALTER TABLE
PROBLEM
While doing an alter table that does multiple change columns , the heap
assigned for the particular table increases and corresponding increase
to dict_sys->size isn't done because of which the dict_sys->size keeps
decreasing with every iteration of set of alter tables provided in the
bug page hitting the assertion dict_sys->size > 0 .
FIX
Fix is to add a check for any table heap size increase during change
column and add the increased value of heap size to dict_sys->size to
avoid it getting diminished on subsequent runs of alter tables.
Reviewed by: Jimmy Yang<[email protected]>
RB: 17817
0 commit comments