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 problem is Exposed expected for each defined index (in terms if Exposed) there is a corresponding index in a database scheme, which is not always the true.
In the case above, two defined unique constraints are satisfied with a single generated index. So Queries.checkMissingIndices determines the index2 as missed and tried to add it one more time which resulting in error.
The text was updated successfully, but these errors were encountered:
The following test fails due to duplicated
index2
constraint generation.The problem is
Exposed
expected for each defined index (in terms ifExposed
) there is a corresponding index in a database scheme, which is not always the true.In the case above, two defined unique constraints are satisfied with a single generated index. So
Queries.checkMissingIndices
determines theindex2
as missed and tried to add it one more time which resulting in error.The text was updated successfully, but these errors were encountered: