asfimport
asfimport
Following the conventions of apt/yum verification script: https://github.com/apache/arrow/pull/4098 **Reporter**: [Krisztian Szucs](https://issues.apache.org/jira/browse/ARROW-5106) / @kszucs **Note**: *This issue was originally created as [ARROW-5106](https://issues.apache.org/jira/browse/ARROW-5106). Please see the [migration documentation](https://github.com/apache/arrow/issues/14542) for further details.*
integration/turbodbc/runtest.sh currently installs and tests the integration with a fork's branch. We should test against the official turbodbc release once Uwe's PR gets merged. The turbodbc install step should be...
Some APIs in `arrow/ipc/test-common.h` aren't really IPC-specific. Furthermore, `arrow/ipc/test-common.h` is already included in non-IPC tests. Those APIs should be moved to the Arrow-wide testing utilities. **Reporter**: [Antoine Pitrou](https://issues.apache.org/jira/browse/ARROW-5141) / @pitrou...
Test and benchmark binaries should always favor the local non-installed libarrow and libarrow_testing. ```bash $ cmake -GNinja -DARROW_BUILD_TESTS=ON .. && ninja $ ldd release/arrow-array-test libarrow_testing.so.14 => /home/fsaintjacques/src/db/arrow/cpp/build/release/libarrow_testing.so.14 (0x00007f8f2b79e000) libarrow.so.14 =>...
In order to reduce the notification noise: - Travis: https://docs.travis-ci.com/user/notifications/#changing-notification-frequency - Appveyor: https://www.appveyor.com/docs/notifications/#triggering-notifications **Reporter**: [Krisztian Szucs](https://issues.apache.org/jira/browse/ARROW-5263) / @kszucs **Note**: *This issue was originally created as [ARROW-5263](https://issues.apache.org/jira/browse/ARROW-5263). Please see the [migration...
After calling Finish it may become necessary to append further elements to an array, which we don't currently support. One way to support this would be consuming the array to...
Currently, `FlightDataStream` is expected to provide `FlightPayload` objects. This requires the user to handle IPC serialization themselves. Instead, it could provide higher-level `FlightData` objects (perhaps a simple struct containing a...
As follow-on work to ARROW-3144, there are cases where a dictionary may be shared by multiple fields in a RecordBatch. The presumption of `arrow::ipc::DictionaryMemo` is that there is a 1-to-1...
This is needed for Arrow GLib. In Arrow GLib, we need to determine how to wrap Arrow C++ `ArrayBuilder` at run-time. `ArrayBuilder` may be passed as a generic `ArrayBuilder` instead...
In ARROW-973, a Markdown page with the FAQ was added. When we are close to publishing a new version of the Sphinx site, it would make sense to move the...