rtadepalli commented on code in PR #777: URL: https://github.com/apache/arrow-java/pull/777#discussion_r2122364486
########## vector/src/main/java/org/apache/arrow/vector/BaseFixedWidthVector.java: ########## @@ -342,7 +340,8 @@ private void allocateBytes(int valueCount) { * slice the source buffer so we have to explicitly allocate the validityBuffer of the target * vector. This is unlike the databuffer which we can always slice for the target vector. */ - private void allocateValidityBuffer(final int validityBufferSize) { + @Override + protected void allocateValidityBuffer(final long validityBufferSize) { Review Comment: Done, there is a slight behavior change though -- the validity buffer in `BaseFixedWidthVector` was not zeroing out its elements post allocation, it is now. Should be fine though I am thinking. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org