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 f467600 commit ddfca39Copy full SHA for ddfca39
vector/src/main/java/org/apache/arrow/vector/complex/StructVector.java
@@ -292,7 +292,7 @@ public void transfer() {
292
293
@Override
294
public void copyValueSafe(int fromIndex, int toIndex) {
295
- while (toIndex >= this.target.getValidityBufferValueCapacity()) {
+ while (toIndex >= target.getValidityBufferValueCapacity()) {
296
target.reallocValidityBuffer();
297
}
298
BitVectorHelper.setValidityBit(target.validityBuffer, toIndex, isSet(fromIndex));
0 commit comments