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
When we have a structure Element->ElementChild->OtherChild(n) some records are not stored in the database and some references between the child(n) and the parent child are not created.
This will lead to some OtherChild in database without any link the the Element that owns them (they won't be deleted when we delete Element).
I've traced it to this code block (ReflectionSaveStatementGenerator:79):
if (contains(rushObjects, rush)) {
// Exit if object is referenced by child
//return;
}
The objects that aren't stored are the ones that enter this condition.
The text was updated successfully, but these errors were encountered:
When we have a structure Element->ElementChild->OtherChild(n) some records are not stored in the database and some references between the child(n) and the parent child are not created.
This will lead to some OtherChild in database without any link the the Element that owns them (they won't be deleted when we delete Element).
I've traced it to this code block (ReflectionSaveStatementGenerator:79):
The objects that aren't stored are the ones that enter this condition.
The text was updated successfully, but these errors were encountered: