[jira] [Created] (ARROW-7553) Unable to free all memory allocated when creating a GArrowSchema

2020-01-10 Thread Mike Pontillo (Jira)
Mike Pontillo created ARROW-7553: Summary: Unable to free all memory allocated when creating a GArrowSchema Key: ARROW-7553 URL: https://issues.apache.org/jira/browse/ARROW-7553 Project: Apache Arrow

[jira] [Created] (ARROW-7552) [C++] TestSlowInputStream is flaky

2020-01-10 Thread Neal Richardson (Jira)
Neal Richardson created ARROW-7552: -- Summary: [C++] TestSlowInputStream is flaky Key: ARROW-7552 URL: https://issues.apache.org/jira/browse/ARROW-7552 Project: Apache Arrow Issue Type: Bug

[jira] [Created] (ARROW-7551) [C++][Flight] Flight test on macOS periodically fails on master

2020-01-10 Thread Neal Richardson (Jira)
Neal Richardson created ARROW-7551: -- Summary: [C++][Flight] Flight test on macOS periodically fails on master Key: ARROW-7551 URL: https://issues.apache.org/jira/browse/ARROW-7551 Project: Apache Arr

[jira] [Created] (ARROW-7550) [R][CI] Run donttest examples in CI

2020-01-10 Thread Neal Richardson (Jira)
Neal Richardson created ARROW-7550: -- Summary: [R][CI] Run donttest examples in CI Key: ARROW-7550 URL: https://issues.apache.org/jira/browse/ARROW-7550 Project: Apache Arrow Issue Type: Impr

[jira] [Created] (ARROW-7549) [Java] Reorganize Flight modules to keep top level clean/organized

2020-01-10 Thread Jacques Nadeau (Jira)
Jacques Nadeau created ARROW-7549: - Summary: [Java] Reorganize Flight modules to keep top level clean/organized Key: ARROW-7549 URL: https://issues.apache.org/jira/browse/ARROW-7549 Project: Apache Ar

[jira] [Created] (ARROW-7548) [Ruby] Can't install Ruby 2.7 - Can't update Ruby 2.6 Windows

2020-01-10 Thread Dominic Sisneros (Jira)
Dominic Sisneros created ARROW-7548: --- Summary: [Ruby] Can't install Ruby 2.7 - Can't update Ruby 2.6 Windows Key: ARROW-7548 URL: https://issues.apache.org/jira/browse/ARROW-7548 Project: Apache Arr

[NIGHTLY] Arrow Build Report for Job nightly-2020-01-10-0

2020-01-10 Thread Crossbow
Arrow Build Report for Job nightly-2020-01-10-0 All tasks: https://github.com/ursa-labs/crossbow/branches/all?query=nightly-2020-01-10-0 Failed Tasks: - gandiva-jar-osx: URL: https://github.com/ursa-labs/crossbow/branches/all?query=nightly-2020-01-10-0-travis-gandiva-jar-osx Succeeded Task

[jira] [Created] (ARROW-7547) [C++] [Python] [Dataset] Additional reader options in ParquetFileFormat

2020-01-10 Thread Joris Van den Bossche (Jira)
Joris Van den Bossche created ARROW-7547: Summary: [C++] [Python] [Dataset] Additional reader options in ParquetFileFormat Key: ARROW-7547 URL: https://issues.apache.org/jira/browse/ARROW-7547

[jira] [Created] (ARROW-7546) [Java] Use new implementation to concat vectors values in batch

2020-01-10 Thread Ji Liu (Jira)
Ji Liu created ARROW-7546: - Summary: [Java] Use new implementation to concat vectors values in batch Key: ARROW-7546 URL: https://issues.apache.org/jira/browse/ARROW-7546 Project: Apache Arrow Issue

[jira] [Created] (ARROW-7545) [C++] Scanning dataset with dictionary type hangs

2020-01-10 Thread Joris Van den Bossche (Jira)
Joris Van den Bossche created ARROW-7545: Summary: [C++] Scanning dataset with dictionary type hangs Key: ARROW-7545 URL: https://issues.apache.org/jira/browse/ARROW-7545 Project: Apache Arrow

[jira] [Created] (ARROW-7544) pyarrow.lib.ArrowNotImplementedError: gRPC returned unimplemented error, with message: clear is not implemented

2020-01-10 Thread Ji Wong Park (Jira)
Ji Wong Park created ARROW-7544: --- Summary: pyarrow.lib.ArrowNotImplementedError: gRPC returned unimplemented error, with message: clear is not implemented Key: ARROW-7544 URL: https://issues.apache.org/jira/browse/A

[DISCUSS][JAVA] Correct the behavior of ListVector isEmpty

2020-01-10 Thread Ji Liu
Hi all, Currently isEmpty API is always return false in BaseRepeatedValueVector, and its subclass ListVector did not overwrite this method. This will lead to incorrect result, for example, a ListVector with data [1,2], null, [], [5,6] would get [false, false, false, false] which is not right. I