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
The expected behavior of DatabaseEngine.updateEntity, with schema policy create, is that if the entity does not need to be updated no DDL is executed; however, the current implementation (in AbstractDatabaseEngine) is always dropping all foreign keys at the beginning and adding them back at the end.
Calling DatabaseEngine.updateEntity should be a no-op if the entity did not change.
The text was updated successfully, but these errors were encountered:
The expected behavior of
DatabaseEngine.updateEntity
, with schema policy create, is that if the entity does not need to be updated no DDL is executed; however, the current implementation (inAbstractDatabaseEngine
) is always dropping all foreign keys at the beginning and adding them back at the end.Calling
DatabaseEngine.updateEntity
should be a no-op if the entity did not change.The text was updated successfully, but these errors were encountered: