This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch
dependabot/maven/java/compression/org.apache.commons-commons-compress-1.21
in repository https://gitbox.apache.org/repos/asf/arrow.git
omit 711fb8a5e2 Bump commons-compress from 1.20 to 1.21 in /java/compression
add 1264e40918 GH-32104: [C++] Add support for Run-End encoded data to
Arrow (#33641)
add 8e5e438d29 GH-34138: [C++][Parquet] Fix parsing stats from
min_value/max_value (#34112)
add c31fb46544 GH-15173: [C++][Parquet] Fixing ByteStreamSplit Standard
broken (#34140)
add 277bd3c76f GH-34219: [Go][FlightRPC] Add Transactions to Sqlite
FlightSQL example (#34220)
add ae1f98f57f GH-34047: [C++][FlightRPC] Make DoAction warning less
prominent (#34182)
add daa5e267fc GH-33143: [C++] Kernel to convert timestamp with timezone
to wall time (#34208)
add 11ae62a142 GH-34150: [C++] [Python] Fix improper initialization of
ConversionOptions (#34156)
add 03463dec5f GH-34244: [Go][FlightRPC] SQLite example report
Transactions support (#34245)
add 7db7e6ac84 GH-34191: [C++] Ensure using the same ProtoBuf in bundled
ORC (#34192)
add f2d632e727 GH-31507: [Python] Address docstrings in Streams and File
Access (Stream Classes) (#33698)
add 3268dc7c04 Bump commons-compress from 1.20 to 1.21 in /java/compression
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 (711fb8a5e2)
\
N -- N -- N
refs/heads/dependabot/maven/java/compression/org.apache.commons-commons-compress-1.21
(3268dc7c04)
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:
.github/workflows/go.yml | 4 +-
cpp/cmake_modules/ThirdpartyToolchain.cmake | 33 +-
cpp/src/arrow/CMakeLists.txt | 4 +
cpp/src/arrow/array.h | 5 +
cpp/src/arrow/array/array_base.cc | 12 +-
cpp/src/arrow/array/array_run_end.cc | 98 ++++
cpp/src/arrow/array/array_run_end.h | 109 ++++
cpp/src/arrow/array/array_run_end_test.cc | 634 +++++++++++++++++++++
cpp/src/arrow/array/array_test.cc | 18 +-
cpp/src/arrow/array/builder_base.cc | 18 +
cpp/src/arrow/array/builder_base.h | 5 +
cpp/src/arrow/array/builder_run_end.cc | 335 +++++++++++
cpp/src/arrow/array/builder_run_end.h | 294 ++++++++++
cpp/src/arrow/array/concatenate.cc | 22 +
cpp/src/arrow/array/data.cc | 2 +
cpp/src/arrow/array/diff.cc | 10 +
cpp/src/arrow/array/util.cc | 66 ++-
cpp/src/arrow/array/validate.cc | 102 ++++
cpp/src/arrow/builder.cc | 8 +
cpp/src/arrow/builder.h | 1 +
cpp/src/arrow/compare.cc | 52 ++
cpp/src/arrow/compute/api_scalar.cc | 1 +
cpp/src/arrow/compute/api_scalar.h | 10 +
.../arrow/compute/kernels/scalar_temporal_test.cc | 33 ++
.../arrow/compute/kernels/scalar_temporal_unary.cc | 41 +-
.../arrow/compute/kernels/vector_selection_test.cc | 1 +
.../arrow/engine/substrait/expression_internal.cc | 2 +
cpp/src/arrow/engine/substrait/options.h | 17 +-
cpp/src/arrow/engine/substrait/type_internal.cc | 1 +
cpp/src/arrow/flight/transport/grpc/grpc_client.cc | 8 +-
cpp/src/arrow/ipc/metadata_internal.cc | 4 +
cpp/src/arrow/ipc/reader.cc | 4 +
cpp/src/arrow/ipc/writer.cc | 4 +
cpp/src/arrow/json/test_common.h | 2 +
cpp/src/arrow/pretty_print.cc | 12 +
cpp/src/arrow/scalar.cc | 45 +-
cpp/src/arrow/scalar.h | 23 +
cpp/src/arrow/scalar_test.cc | 111 ++++
cpp/src/arrow/testing/json_internal.cc | 12 +
cpp/src/arrow/type.cc | 42 +-
cpp/src/arrow/type.h | 29 +
cpp/src/arrow/type_fwd.h | 12 +
cpp/src/arrow/type_test.cc | 33 ++
cpp/src/arrow/type_traits.h | 16 +
cpp/src/arrow/util/CMakeLists.txt | 1 +
cpp/src/arrow/util/ree_util.cc | 53 ++
cpp/src/arrow/util/ree_util.h | 352 ++++++++++++
cpp/src/arrow/util/ree_util_test.cc | 261 +++++++++
cpp/src/arrow/visitor.cc | 3 +
cpp/src/arrow/visitor.h | 3 +
cpp/src/arrow/visitor_generate.h | 1 +
cpp/src/parquet/arrow/arrow_reader_writer_test.cc | 24 +-
cpp/src/parquet/arrow/path_internal.cc | 3 +-
cpp/src/parquet/column_reader.cc | 23 +-
cpp/src/parquet/column_writer.cc | 1 +
cpp/src/parquet/encoding.cc | 15 +-
cpp/src/parquet/encoding_test.cc | 45 ++
docs/source/cpp/compute.rst | 11 +-
go/arrow/flight/flightsql/example/sqlite_info.go | 2 +
go/arrow/flight/flightsql/example/sqlite_server.go | 112 +++-
go/arrow/flight/flightsql/sqlite_server_test.go | 63 ++
python/pyarrow/_substrait.pyx | 1 +
python/pyarrow/includes/libarrow_substrait.pxd | 3 +-
python/pyarrow/io.pxi | 174 ++++++
python/pyarrow/src/arrow/python/arrow_to_pandas.cc | 1 +
python/pyarrow/tests/test_compute.py | 1 +
66 files changed, 3385 insertions(+), 63 deletions(-)
create mode 100644 cpp/src/arrow/array/array_run_end.cc
create mode 100644 cpp/src/arrow/array/array_run_end.h
create mode 100644 cpp/src/arrow/array/array_run_end_test.cc
create mode 100644 cpp/src/arrow/array/builder_run_end.cc
create mode 100644 cpp/src/arrow/array/builder_run_end.h
create mode 100644 cpp/src/arrow/util/ree_util.cc
create mode 100644 cpp/src/arrow/util/ree_util.h
create mode 100644 cpp/src/arrow/util/ree_util_test.cc