提交 d12f1114 authored 作者: Andrei Tokar's avatar Andrei Tokar

NPE instead of returning 0

上级 ac39f083
......@@ -103,7 +103,7 @@ public class JdbcBlob extends JdbcLob implements Blob {
@Override
public int setBytes(long pos, byte[] bytes) throws SQLException {
if (bytes == null) {
return 0;
throw new NullPointerException();
}
try {
if (isDebugEnabled()) {
......@@ -133,7 +133,7 @@ public class JdbcBlob extends JdbcLob implements Blob {
public int setBytes(long pos, byte[] bytes, int offset, int len)
throws SQLException {
if (bytes == null) {
return 0;
throw new NullPointerException();
}
try {
if (isDebugEnabled()) {
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论