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#33327093 FK: assertion failure in row_MySQL_pad_col
Analysis
--------
1. The parent table has 3 column of datatype (i) int (PK) (ii) varchar
(iii) a virtual column which is generated by varchar column.
2. The child table has a column which is referring to the primary key
of the parent table.
3. There is a update in the parent table which changes the primary key
and the varchar column, so it tries to build the update node to
propagate to the child table.
4. While building the update node it is trying to build the update
field for virtual column which is causing the crash.
FIX
===
1. The virtual column update should not be present in the update node,
because no column in child table can have a foreign key
relationship with a virtual column.
2. So skip the update to the virtual column when building the update node
for child table
Change-Id: Iff7d1f32c7c9d846453c587fc0c5b8604ec679ec
0 commit comments