-
-
Notifications
You must be signed in to change notification settings - Fork 964
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: gracefully handle unused index (#4196)
- Loading branch information
Showing
4 changed files
with
0 additions
and
9 deletions.
There are no files selected for viewing
2 changes: 0 additions & 2 deletions
2
persistence/sql/migrations/sql/20241106142200000002_identities.autocommit.down.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,2 @@ | ||
CREATE INDEX IF NOT EXISTS identity_credential_identifiers_identity_credential_id_idx | ||
ON identity_credential_identifiers (identity_credential_id ASC); | ||
|
||
DROP INDEX IF EXISTS identity_credential_identifiers_ici_nid_i_idx; |
2 changes: 0 additions & 2 deletions
2
persistence/sql/migrations/sql/20241106142200000002_identities.autocommit.up.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,2 @@ | ||
CREATE INDEX IF NOT EXISTS identity_credential_identifiers_ici_nid_i_idx | ||
ON identity_credential_identifiers (identity_credential_id ASC, nid ASC, identifier ASC); | ||
|
||
DROP INDEX IF EXISTS identity_credential_identifiers_identity_credential_id_idx; |
3 changes: 0 additions & 3 deletions
3
persistence/sql/migrations/sql/20241106142200000002_identities.mysql.autocommit.down.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1 @@ | ||
CREATE INDEX identity_credential_identifiers_identity_credential_id_idx | ||
ON identity_credential_identifiers (identity_credential_id ASC); | ||
|
||
DROP INDEX identity_credential_identifiers_ici_nid_i_idx ON identity_credential_identifiers; |
2 changes: 0 additions & 2 deletions
2
persistence/sql/migrations/sql/20241106142200000002_identities.mysql.autocommit.up.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,2 @@ | ||
CREATE INDEX identity_credential_identifiers_ici_nid_i_idx | ||
ON identity_credential_identifiers (identity_credential_id ASC, nid ASC, identifier ASC); | ||
|
||
DROP INDEX identity_credential_identifiers_identity_credential_id_idx ON identity_credential_identifiers; |