Skip to content

Commit

Permalink
Fix the bug with incorrect parameters in the setNull method.
Browse files Browse the repository at this point in the history
  • Loading branch information
Guoyu Feng authored and vlsi committed May 12, 2024
1 parent ed16b49 commit d12b625
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -1591,7 +1591,7 @@ public void setBinaryStream(@Positive int parameterIndex, @Nullable InputStream
checkClosed();

if (value == null) {
setNull(parameterIndex, Oid.BYTEA);
setNull(parameterIndex, Types.VARBINARY);
return;
}

Expand Down

0 comments on commit d12b625

Please sign in to comment.