Skip to content

Commit

Permalink
feat: Indicate that all open result sets will be closed when autocomm…
Browse files Browse the repository at this point in the history
…it fails. [metadata]
  • Loading branch information
michael-simons committed Jan 10, 2025
1 parent 791e4f2 commit e98cab4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1478,8 +1478,8 @@ public boolean supportsStoredFunctionsUsingCallSyntax() {
}

@Override
public boolean autoCommitFailureClosesAllResultSets() throws SQLException {
throw new SQLFeatureNotSupportedException();
public boolean autoCommitFailureClosesAllResultSets() {
return true;
}

@Override
Expand Down

0 comments on commit e98cab4

Please sign in to comment.