This is an automated email from the ASF dual-hosted git repository.
apitrou pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git.
from df37b41 ARROW-15377: [Release] Bump nodejs version to 16 in the macOS
verification builds
add c39caed ARROW-11297: [C++][Python] Add ORC writer options
No new revisions were added by this update.
Summary of changes:
cpp/src/arrow/CMakeLists.txt | 6 +-
cpp/src/arrow/adapters/orc/CMakeLists.txt | 3 +-
cpp/src/arrow/adapters/orc/adapter.cc | 184 +++++++++++--
cpp/src/arrow/adapters/orc/adapter.h | 95 ++++++-
cpp/src/arrow/adapters/orc/adapter_test.cc | 63 +++--
.../{util/launder.h => adapters/orc/options.cc} | 23 +-
cpp/src/arrow/adapters/orc/options.h | 119 +++++++++
.../adapters/orc/{adapter_util.cc => util.cc} | 2 +-
.../arrow/adapters/orc/{adapter_util.h => util.h} | 0
docs/source/cpp/api/formats.rst | 17 +-
docs/source/python/api/formats.rst | 3 +
python/pyarrow/_orc.pxd | 77 +++++-
python/pyarrow/_orc.pyx | 287 ++++++++++++++++++++-
python/pyarrow/orc.py | 285 +++++++++++++++-----
python/pyarrow/tests/parquet/test_basic.py | 2 +-
python/pyarrow/tests/test_dataset.py | 8 +-
python/pyarrow/tests/test_orc.py | 284 ++++++++++++++++++++
17 files changed, 1319 insertions(+), 139 deletions(-)
copy cpp/src/arrow/{util/launder.h => adapters/orc/options.cc} (76%)
create mode 100644 cpp/src/arrow/adapters/orc/options.h
rename cpp/src/arrow/adapters/orc/{adapter_util.cc => util.cc} (99%)
rename cpp/src/arrow/adapters/orc/{adapter_util.h => util.h} (100%)