This is an automated email from the ASF dual-hosted git repository.
dependabot[bot] pushed a change to branch dependabot/cargo/main/prost-b2daf72eba
in repository https://gitbox.apache.org/repos/asf/arrow-rs.git
discard ad68db4d94 chore(deps): bump the prost group across 1 directory with 3
updates
add f0ec758f4f feat(parquet): `RowSelection` can be backed by a
`BooleanBuffer` (#10141)
add b8b59fb38d avro: bound VLQDecoder::long against overlong varints
(#10407)
add b278c547a3 fix(arrow-schema): stop asserting on unstable
TryFromIntError message in tests (#10433)
add 784fa7c2ad chore: deduplicate filter nulls code in coalesce/filter
kernel (#10348)
add b1ca9c42ac refactor(parquet): split `arrow_reader/selection` into
smaller modules (#10434)
add 09ebd4eaeb perf(parquet): slice up contiguous buffer for decimals and
fsb (#10364)
add cd47d4a421 support suffix white space in arrow-cast parse (#10396)
add 87cd2e5265 chore(deps): bump base64 from 0.22.1 to 0.23.0 (#10430)
add 8e7043bf93 bench(parquet): add async RowSelection policy baseline
(#10135)
add 1a4dfccd98 chore(deps): bump the prost group across 1 directory with 3
updates
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 (ad68db4d94)
\
N -- N -- N refs/heads/dependabot/cargo/main/prost-b2daf72eba
(1a4dfccd98)
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:
Cargo.lock | 22 +-
arrow-avro/src/reader/block.rs | 4 +-
arrow-avro/src/reader/header.rs | 8 +-
arrow-avro/src/reader/vlq.rs | 62 +-
arrow-cast/Cargo.toml | 2 +-
arrow-cast/src/base64.rs | 4 +
arrow-cast/src/parse.rs | 93 +-
arrow-flight/Cargo.toml | 2 +-
arrow-schema/src/datatype_parse.rs | 18 +-
arrow-select/src/coalesce/byte_view.rs | 16 +-
arrow-select/src/coalesce/primitive.rs | 14 +-
arrow-select/src/filter.rs | 27 -
parquet-variant-json/Cargo.toml | 2 +-
parquet/Cargo.toml | 14 +-
.../benches/arrow_reader_row_selection_policy.rs | 57 +
parquet/benches/row_selection_cursor.rs | 86 +-
.../row_selection_policy_common/assertions.rs | 65 +
.../benches/row_selection_policy_common/cases.rs | 121 ++
.../benches/row_selection_policy_common/fixture.rs | 163 ++
.../benches/row_selection_policy_common}/mod.rs | 11 +-
.../benches/row_selection_policy_common/model.rs | 61 +
.../row_selection_policy_common/register.rs | 59 +
.../benches/row_selection_policy_common/runner.rs | 92 +
.../benches/row_selection_policy_common/shapes.rs | 150 ++
parquet/benches/row_selector_boolean_buffer.rs | 233 +++
parquet/src/arrow/arrow_reader/mod.rs | 5 +-
parquet/src/arrow/arrow_reader/read_plan.rs | 275 ++-
parquet/src/arrow/arrow_reader/selection.rs | 1872 --------------------
.../src/arrow/arrow_reader/selection/algebra.rs | 828 +++++++++
.../src/arrow/arrow_reader/selection/boolean.rs | 746 ++++++++
parquet/src/arrow/arrow_reader/selection/cursor.rs | 419 +++++
parquet/src/arrow/arrow_reader/selection/mod.rs | 951 ++++++++++
parquet/src/arrow/arrow_reader/selection/ranges.rs | 283 +++
.../src/arrow/arrow_reader/selection/selector.rs | 522 ++++++
parquet/src/arrow/arrow_writer/mod.rs | 158 +-
parquet/tests/arrow_reader/row_filter/async.rs | 67 +
36 files changed, 5396 insertions(+), 2116 deletions(-)
create mode 100644 parquet/benches/arrow_reader_row_selection_policy.rs
create mode 100644 parquet/benches/row_selection_policy_common/assertions.rs
create mode 100644 parquet/benches/row_selection_policy_common/cases.rs
create mode 100644 parquet/benches/row_selection_policy_common/fixture.rs
copy {arrow-flight/tests/common =>
parquet/benches/row_selection_policy_common}/mod.rs (82%)
create mode 100644 parquet/benches/row_selection_policy_common/model.rs
create mode 100644 parquet/benches/row_selection_policy_common/register.rs
create mode 100644 parquet/benches/row_selection_policy_common/runner.rs
create mode 100644 parquet/benches/row_selection_policy_common/shapes.rs
create mode 100644 parquet/benches/row_selector_boolean_buffer.rs
delete mode 100644 parquet/src/arrow/arrow_reader/selection.rs
create mode 100644 parquet/src/arrow/arrow_reader/selection/algebra.rs
create mode 100644 parquet/src/arrow/arrow_reader/selection/boolean.rs
create mode 100644 parquet/src/arrow/arrow_reader/selection/cursor.rs
create mode 100644 parquet/src/arrow/arrow_reader/selection/mod.rs
create mode 100644 parquet/src/arrow/arrow_reader/selection/ranges.rs
create mode 100644 parquet/src/arrow/arrow_reader/selection/selector.rs