提交 cfb079a9 authored 作者: Thomas Mueller's avatar Thomas Mueller

Fix simple result set

上级 2ea52348
......@@ -625,7 +625,10 @@ public class SimpleResultSet implements ResultSet, ResultSetMetaData {
@Override
public byte[] getBytes(int columnIndex) throws SQLException {
Object o = get(columnIndex);
return o instanceof byte[] ? (byte[]) o : Utils.serialize(o);
if (o == null || o instanceof byte[]) {
return (byte[]) o;
}
return Utils.serialize(o);
}
/**
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论