Skip to content

Commit

Permalink
Merge pull request #12684 from PasanT9/postgress-error-fix
Browse files Browse the repository at this point in the history
  • Loading branch information
RakhithaRR authored Oct 21, 2024
2 parents 0880a91 + 0e12536 commit ca86fe6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14839,7 +14839,7 @@ public String deleteLLMProvider(String organization, String llmProviderId, boole
connection.prepareStatement(SQLConstants.DELETE_LLM_PROVIDER_SQL)) {
prepStmt.setString(1, organization);
prepStmt.setString(2, llmProviderId);
prepStmt.setBoolean(3, builtIn);
prepStmt.setString(3, Boolean.toString(builtIn));
prepStmt.executeUpdate();
connection.commit();
return llmProviderId;
Expand Down

0 comments on commit ca86fe6

Please sign in to comment.