Skip to content

Commit

Permalink
Merge pull request #96 from databendcloud/fix/preparecall
Browse files Browse the repository at this point in the history
fix: fix prepareCall
  • Loading branch information
hantmac authored Aug 31, 2023
2 parents ff1f6c9 + d574277 commit c8a7257
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ public PreparedStatement prepareStatement(String s)
@Override
public CallableStatement prepareCall(String s)
throws SQLException {
return null;
throw new SQLFeatureNotSupportedException("prepareCall");
}

@Override
Expand Down Expand Up @@ -349,7 +349,6 @@ public PreparedStatement prepareStatement(String sql, int resultSetType, int res
@Override
public CallableStatement prepareCall(String sql, int resultSetType, int resultSetConcurrency, int resultSetHoldability)
throws SQLException {
// checkHoldability(resultSetHoldability);
return prepareCall(sql, resultSetType, resultSetConcurrency);
}

Expand Down

0 comments on commit c8a7257

Please sign in to comment.