提交 bc7d3f8a authored 作者: Vladislav Bauer's avatar Vladislav Bauer

`FunctionCursorResultSet`: use `Arrays.copyOf` instead of `System.arraycopy`

上级 a18685a6
...@@ -10,6 +10,8 @@ import org.h2.result.ResultInterface; ...@@ -10,6 +10,8 @@ import org.h2.result.ResultInterface;
import org.h2.result.SearchRow; import org.h2.result.SearchRow;
import org.h2.value.Value; import org.h2.value.Value;
import java.util.Arrays;
/** /**
* A cursor for a function that returns a JDBC result set. * A cursor for a function that returns a JDBC result set.
*/ */
...@@ -29,8 +31,7 @@ public class FunctionCursorResultSet extends AbstractFunctionCursor { ...@@ -29,8 +31,7 @@ public class FunctionCursorResultSet extends AbstractFunctionCursor {
if (result != null && result.next()) { if (result != null && result.next()) {
int columnCount = result.getVisibleColumnCount(); int columnCount = result.getVisibleColumnCount();
Value[] currentRow = result.currentRow(); Value[] currentRow = result.currentRow();
values = new Value[columnCount]; values = Arrays.copyOf(currentRow, columnCount);
System.arraycopy(currentRow, 0, values, 0, columnCount);
} else { } else {
values = null; values = null;
} }
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论