Skip to content

Commit

Permalink
Fix oracle db query issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
Thisara-Welmilla committed Jan 29, 2025
1 parent d870458 commit 787b2d1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public static class Query {
"FROM IDP_AUTHENTICATOR " +
"WHERE DEFINED_BY = :DEFINED_BY; AND TENANT_ID = :TENANT_ID; " +
"AND IDP_ID IN (SELECT ID FROM IDP WHERE IDP.NAME = :IDP_NAME; " +
"AND IDP.TENANT_ID = :TENANT_ID;);";
"AND IDP.TENANT_ID = :TENANT_ID;)";
public static final String DELETE_AUTHENTICATOR_SQL = "DELETE FROM IDP_AUTHENTICATOR WHERE NAME = :NAME; " +
" AND TENANT_ID = :TENANT_ID;";
public static final String GET_AUTHENTICATOR_ID_SQL = "SELECT ID FROM IDP_AUTHENTICATOR " +
Expand Down

0 comments on commit 787b2d1

Please sign in to comment.