This is an automated email from the ASF dual-hosted git repository.
kszucs pushed a change to branch release-7.0.0
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
add b1b8728 ARROW-14609 [R] left_join by argument error message mismatch
add a3efe72 ARROW-12735: [C++] Write GDB plugin
add 22dc537 ARROW-15388: [C++] Avoid including absl from flatbuffers
add 33f89f6 ARROW-15399: [Release][JS] Increase minimum NodeJS version to
16
add d49e216 ARROW-15394: [CI][Docs] Fix env variable to ensure doxygen is
used in doc build
add 6b0ce27 ARROW-15393: [Release][Crossbow] Fall back to <version>dev0
when the generated scm version number doesn't have a distance
add cba3ee6 MINOR: [CI] Skip matlab builds if the pull request has WIP in
its title (#12205)
No new revisions were added by this update.
Summary of changes:
.github/workflows/comment_bot.yml | 2 +
.github/workflows/matlab.yml | 1 +
ci/scripts/cpp_build.sh | 2 +-
ci/scripts/python_test.sh | 1 +
cpp/gdb_arrow.py | 1894 ++++++++++++++++++++
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
cpp/src/arrow/ipc/json_simple.cc | 14 +
cpp/src/arrow/ipc/json_simple.h | 6 +
cpp/src/arrow/ipc/json_simple_test.cc | 19 +
cpp/src/arrow/python/CMakeLists.txt | 1 +
cpp/src/arrow/python/gdb.cc | 449 +++++
cpp/src/arrow/python/{init.h => gdb.h} | 11 +-
cpp/src/arrow/testing/gtest_util.cc | 8 +-
cpp/thirdparty/flatbuffers/README.md | 42 +
.../flatbuffers/include/flatbuffers/base.h | 7 -
dev/archery/archery/crossbow/core.py | 2 +-
dev/release/verify-release-candidate.sh | 3 +-
dev/tasks/verify-rc/github.linux.amd64.yml | 2 +-
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/includes/libarrow.pxd | 4 +
python/pyarrow/lib.pyx | 4 +
python/pyarrow/orc.py | 285 ++-
python/pyarrow/tests/parquet/test_basic.py | 2 +-
python/pyarrow/tests/test_dataset.py | 8 +-
python/pyarrow/tests/test_gdb.py | 854 +++++++++
python/pyarrow/tests/test_orc.py | 284 +++
r/R/dplyr-join.R | 30 +-
r/R/util.R | 7 +-
r/tests/testthat/_snaps/dplyr-join.md | 46 +
r/tests/testthat/test-dplyr-join.R | 52 +-
r/tests/testthat/test-parquet.R | 2 +-
42 files changed, 4752 insertions(+), 169 deletions(-)
create mode 100644 cpp/gdb_arrow.py
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%)
create mode 100644 cpp/src/arrow/python/gdb.cc
copy cpp/src/arrow/python/{init.h => gdb.h} (89%)
create mode 100644 cpp/thirdparty/flatbuffers/README.md
create mode 100644 python/pyarrow/tests/test_gdb.py
create mode 100644 r/tests/testthat/_snaps/dplyr-join.md