This is an automated email from the ASF dual-hosted git repository.
nevime pushed a change to branch rust-parquet-arrow-writer
in repository https://gitbox.apache.org/repos/asf/arrow.git.
omit f70e6db ARROW-10225: [Rust] [Parquet] Fix null comparison in roundtrip
omit e1b613b ARROW-10168: [Rust] [Parquet] Schema roundtrip - use Arrow
schema from Parquet metadata when available
omit de95e84 ARROW-10191: [Rust] [Parquet] Add roundtrip Arrow -> Parquet
tests for all supported Arrow DataTypes
omit 58855a8 ARROW-8426: [Rust] [Parquet] Add support for writing
dictionary types
omit ebe8172 ARROW-10095: [Rust] Update rust-parquet-arrow-writer branch's
encode_arrow_schema with ipc changes
omit 12b11b2 ARROW-8423: [Rust] [Parquet] Serialize Arrow schema metadata
omit 4e6a836 ARROW-8289: [Rust] Parquet Arrow writer with nested support
add 1d10f22 ARROW-10236: [Rust] Add can_cast_types to arrow cast kernel,
use in DataFusion
add 18495e0 ARROW-10294: [Java] Resolve problems of DecimalVector APIs on
ArrowBufs
add 7189b91 ARROW-9475: [Java] Clean up usages of BaseAllocator, use
BufferAllocator in…
add 2510f4f ARROW-10313: [C++] Faster UTF8 validation for small strings
add f58db45 ARROW-9898: [C++][Gandiva] Fix linking issue with
castINT/FLOAT functions
add 487895f ARROW-10311: [Release] Update crossbow verification process
add ab62c28 ARROW-10321: [C++] Use check_cxx_source_compiles for AVX512
detect in compiler
add 2b8dc08 ARROW-8289: [Rust] Parquet Arrow writer with nested support
add 923d23b ARROW-8423: [Rust] [Parquet] Serialize Arrow schema metadata
add 2f81785 ARROW-10095: [Rust] Update rust-parquet-arrow-writer branch's
encode_arrow_schema with ipc changes
add 6e237bc ARROW-8426: [Rust] [Parquet] Add support for writing
dictionary types
add b7b45d1 ARROW-10191: [Rust] [Parquet] Add roundtrip Arrow -> Parquet
tests for all supported Arrow DataTypes
add 3a22d3d ARROW-10168: [Rust] [Parquet] Schema roundtrip - use Arrow
schema from Parquet metadata when available
add ead5e14 ARROW-10225: [Rust] [Parquet] Fix null comparison in roundtrip
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 (f70e6db)
\
N -- N -- N refs/heads/rust-parquet-arrow-writer (ead5e14)
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:
cpp/cmake_modules/SetupCxxFlags.cmake | 24 +-
cpp/src/arrow/CMakeLists.txt | 8 +-
cpp/src/arrow/util/utf8.h | 53 ++-
cpp/src/gandiva/CMakeLists.txt | 1 +
cpp/src/gandiva/function_registry_string.cc | 20 +-
cpp/src/gandiva/gdv_function_stubs.cc | 60 +++
cpp/src/gandiva/gdv_function_stubs.h | 14 +
cpp/src/gandiva/gdv_function_stubs_test.cc | 163 +++++++
cpp/src/gandiva/precompiled/string_ops.cc | 24 +-
cpp/src/gandiva/precompiled/string_ops_test.cc | 135 +-----
cpp/src/parquet/CMakeLists.txt | 2 +-
dev/archery/archery/bot.py | 14 +-
dev/release/verify-release-candidate.sh | 22 +-
dev/tasks/crossbow.py | 32 +-
dev/tasks/tasks.yml | 159 ++++---
.../github.linux.yml} | 67 +--
dev/tasks/verify-rc/github.nix.yml | 82 ----
.../{github.windows.wheels.yml => github.osx.yml} | 29 +-
.../{github.windows.source.yml => github.win.yml} | 17 +-
.../arrow/gandiva/evaluator/ProjectorTest.java | 187 ++++++++
.../java/org/apache/arrow/memory/Accountant.java | 3 +-
.../org/apache/arrow/memory/AllocationManager.java | 39 +-
.../org/apache/arrow/memory/BaseAllocator.java | 16 +-
.../org/apache/arrow/memory/BufferAllocator.java | 32 ++
.../java/org/apache/arrow/memory/BufferLedger.java | 22 +-
.../memory/DefaultAllocationManagerFactory.java | 2 +-
.../memory/DefaultAllocationManagerFactory.java | 2 +-
.../arrow/memory/NettyAllocationManager.java | 6 +-
.../org/apache/arrow/memory/TestBaseAllocator.java | 2 +-
.../arrow/memory/TestNettyAllocationManager.java | 2 +-
.../memory/DefaultAllocationManagerFactory.java | 2 +-
.../arrow/memory/UnsafeAllocationManager.java | 4 +-
.../src/main/codegen/data/ValueVectorTypes.tdd | 2 +-
.../src/main/codegen/templates/ComplexWriters.java | 4 +-
.../templates/UnionFixedSizeListWriter.java | 2 +-
.../main/codegen/templates/UnionListWriter.java | 4 +-
.../org/apache/arrow/vector/DecimalVector.java | 12 +-
.../vector/complex/impl/PromotableWriter.java | 2 +-
.../apache/arrow/vector/util/DecimalUtility.java | 2 +-
.../org/apache/arrow/vector/ITTestLargeVector.java | 21 +-
rust/arrow/src/compute/kernels/cast.rs | 494 ++++++++++++++++++++-
rust/arrow/src/datatypes.rs | 10 +
rust/datafusion/src/logical_plan/mod.rs | 13 +-
rust/datafusion/src/physical_plan/expressions.rs | 26 +-
44 files changed, 1349 insertions(+), 488 deletions(-)
create mode 100644 cpp/src/gandiva/gdv_function_stubs_test.cc
copy dev/tasks/{r/github.linux.cran.yml => verify-rc/github.linux.yml} (50%)
delete mode 100644 dev/tasks/verify-rc/github.nix.yml
rename dev/tasks/verify-rc/{github.windows.wheels.yml => github.osx.yml} (67%)
rename dev/tasks/verify-rc/{github.windows.source.yml => github.win.yml} (83%)