We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e798ff6 commit c0ae821Copy full SHA for c0ae821
vector/src/main/java/org/apache/arrow/vector/complex/LargeListVector.java
@@ -865,7 +865,8 @@ public List<?> getObject(int index) {
865
final long start = offsetBuffer.getLong((long) index * OFFSET_WIDTH);
866
final long end = offsetBuffer.getLong(((long) index + 1L) * OFFSET_WIDTH);
867
final ValueVector vv = getDataVector();
868
- final List<Object> vals = new JsonStringArrayList<>(LargeMemoryUtil.checkedCastToInt(end - start));
+ final List<Object> vals =
869
+ new JsonStringArrayList<>(LargeMemoryUtil.checkedCastToInt(end - start));
870
for (long i = start; i < end; i++) {
871
vals.add(vv.getObject(checkedCastToInt(i)));
872
}
0 commit comments