Skip to content

Commit

Permalink
Fix SQL parse error
Browse files Browse the repository at this point in the history
  • Loading branch information
PasanT9 committed Oct 21, 2024
1 parent d1023a7 commit 0e12536
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 0e12536

Please sign in to comment.