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.
omit a16635e ARROW-15392: [JS] Disable flaky javascript unittest
omit 599d1e6 Revert "ARROW-12735: [C++] Write GDB plugin"
add 3fa2d21 ARROW-14816: [R] Implement bindings for lubridate::mday
add e291d0f ARROW-15154: [R] Expose ReferencedBufferSize to R
add 664a158 MINOR: [Release] Correctly detect staging flag during binary
upload step (#12226)
add 7f0867e ARROW-15416: [Python] Add option to skip gdb tests
add 54460d9 ARROW-15420: [Python] Skip if GDB script is not found
add 8e34b64 ARROW-12880: [C++][Gandiva] Add castTIME(int32),
castTIMESTAMP(int64) and castTIME(utf8) functions
add a8c0b1f ARROW-15417: [Python][Packaging] Use vcpkg manifest to
install wheel dependencies; downgrade AWS SDK by building the bundled version
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (a16635e)
\
N -- N -- N refs/heads/release-7.0.0 (a8c0b1f)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
No new revisions were added by this update.
Summary of changes:
ci/docker/java-jni-manylinux-201x.dockerfile | 23 +-
ci/docker/python-wheel-manylinux-201x.dockerfile | 54 +-
ci/docker/python-wheel-windows-vs2017.dockerfile | 66 +-
ci/scripts/java_jni_manylinux_build.sh | 3 -
ci/scripts/python_test.sh | 1 +
ci/scripts/python_wheel_macos_build.sh | 10 +-
ci/scripts/python_wheel_manylinux_build.sh | 7 +-
ci/scripts/python_wheel_windows_build.bat | 6 +-
ci/scripts/python_wheel_windows_test.bat | 18 +-
ci/vcpkg/ports.patch | 20 +-
ci/vcpkg/vcpkg.json | 133 ++
cpp/cmake_modules/ThirdpartyToolchain.cmake | 32 +-
cpp/gdb_arrow.py | 1894 ++++++++++++++++++++++
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/src/gandiva/function_registry_datetime.cc | 7 +
cpp/src/gandiva/precompiled/time.cc | 97 ++
cpp/src/gandiva/precompiled/time_test.cc | 68 +-
cpp/src/gandiva/precompiled/types.h | 2 +
cpp/src/gandiva/tests/date_time_test.cc | 56 +-
dev/release/binary-task.rb | 2 +-
dev/tasks/java-jars/github.yml | 2 +-
dev/tasks/python-wheels/github.osx.amd64.yml | 44 +-
dev/tasks/python-wheels/github.osx.arm64.yml | 32 +-
docker-compose.yml | 1 +
js/test/unit/generated-data-tests.ts | 2 +-
python/pyarrow/includes/libarrow.pxd | 4 +
python/pyarrow/lib.pyx | 4 +
python/pyarrow/tests/conftest.py | 12 +-
python/pyarrow/tests/test_gdb.py | 861 ++++++++++
r/R/array.R | 2 +
r/R/arrowExports.R | 16 +
r/R/chunked-array.R | 2 +
r/R/expression.R | 1 +
r/R/record-batch.R | 2 +
r/R/table.R | 2 +
r/src/array.cpp | 6 +
r/src/arrowExports.cpp | 66 +-
r/src/chunkedarray.cpp | 7 +
r/src/recordbatch.cpp | 9 +
r/src/table.cpp | 6 +
r/tests/testthat/test-dplyr-funcs-datetime.R | 18 +
47 files changed, 3904 insertions(+), 202 deletions(-)
create mode 100644 ci/vcpkg/vcpkg.json
create mode 100644 cpp/gdb_arrow.py
create mode 100644 cpp/src/arrow/python/gdb.cc
copy cpp/src/arrow/python/{init.h => gdb.h} (89%)
create mode 100644 python/pyarrow/tests/test_gdb.py