[
https://issues.apache.org/jira/browse/ARROW-407?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Rok Mihevc updated ARROW-407:
-----------------------------
External issue URL: https://github.com/apache/arrow/issues/16056
> BitVector.copyFromSafe() should re-allocate if necessary instead of returning
> false
> -----------------------------------------------------------------------------------
>
> Key: ARROW-407
> URL: https://issues.apache.org/jira/browse/ARROW-407
> Project: Apache Arrow
> Issue Type: Bug
> Components: Java
> Reporter: Abdel Hakim Deneche
> Assignee: Abdel Hakim Deneche
> Priority: Major
> Fix For: 0.7.0
>
>
> Current implementation:
> {code}
> public boolean copyFromSafe(int inIndex, int outIndex, BitVector from) {
> if (outIndex >= this.getValueCapacity()) {
> decrementAllocationMonitor();
> return false;
> }
> copyFrom(inIndex, outIndex, from);
> return true;
> }
> {code}
> doesn't match the expectation from "safe" methods. The method should try to
> re-allocate if it's running out of space instead of returning false
--
This message was sent by Atlassian Jira
(v8.20.10#820010)