Skip to content

Commit

Permalink
chore: synchronize workspaces
Browse files Browse the repository at this point in the history
  • Loading branch information
aeneasr committed Nov 6, 2024
1 parent 0e6fc80 commit 8a14b0d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions persistence/sql/identity/persister_identity.go
Original file line number Diff line number Diff line change
Expand Up @@ -806,11 +806,11 @@ func identifiersTableNameWithIndexHint(con *pop.Connection) string {
ici := "identity_credential_identifiers"
switch con.Dialect.Name() {
case "cockroach":
ici += "@identity_credential_identifiers_nid_i_ici_idx"
ici += "@identity_credential_identifiers_nid_ici_idx"
case "sqlite3":
ici += " INDEXED BY identity_credential_identifiers_nid_i_ici_idx"
ici += " INDEXED BY identity_credential_identifiers_nid_ici_idx"
case "mysql":
ici += " USE INDEX(identity_credential_identifiers_nid_i_ici_idx)"
ici += " USE INDEX(identity_credential_identifiers_nid_ici_idx)"
default:
// good luck 🤷‍♂️
}
Expand Down

0 comments on commit 8a14b0d

Please sign in to comment.