[
https://issues.apache.org/jira/browse/ARROW-1710?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16267678#comment-16267678
]
ASF GitHub Bot commented on ARROW-1710:
---------------------------------------
icexelloss commented on a change in pull request #1341: ARROW-1710: [Java]
Remove Non-Nullable Vectors
URL: https://github.com/apache/arrow/pull/1341#discussion_r153338418
##########
File path:
java/vector/src/test/java/org/apache/arrow/vector/TestOversizedAllocationForValueVector.java
##########
@@ -112,10 +112,10 @@ public void testVariableVectorReallocation() {
try {
vector.allocateNew(expectedAllocationInBytes, 10);
assertTrue(expectedOffsetSize <= vector.getValueCapacity());
- assertTrue(expectedAllocationInBytes <= vector.getBuffer().capacity());
+ assertTrue(expectedAllocationInBytes <=
vector.getDataBuffer().capacity());
Review comment:
Cool. Thanks
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
> [Java] Remove non-nullable vectors in new vector class hierarchy
> -----------------------------------------------------------------
>
> Key: ARROW-1710
> URL: https://issues.apache.org/jira/browse/ARROW-1710
> Project: Apache Arrow
> Issue Type: Sub-task
> Components: Java - Vectors
> Reporter: Li Jin
> Assignee: Bryan Cutler
> Labels: pull-request-available
> Fix For: 0.8.0
>
>
> So far the consensus seems to be remove all non-nullable vectors.
--
This message was sent by Atlassian JIRA
(v6.4.14#64029)