This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch dependabot/cargo/main/object_store-0.10.1
in repository https://gitbox.apache.org/repos/asf/datafusion.git
discard e247a4e302 Update object_store requirement from 0.9.1 to 0.10.1
add 98cd19ef1c Remove duplicate function name in its aliases list (#10661)
add 5a9712efd7 minor: unnest protobuf serde support (#10681)
add 27627546d1 Support Substrait's VirtualTables (#10531)
add 70a215bc8a support limit in agg exec for ser/deser (#10692)
add a51d025418 display date32/64 as YYYY-MM-DD (#10691)
add 9fba34d557 Fix: array list values are leaked on nested `unnest`
operators (#10689)
add 156a525286 Support LogicalPlan::Distinct in unparser (#10690)
add 08e19f4956 Remove redundant upper case aliases for `median`,
`first_value` and `last_value` (#10696)
add 09054263df Minor: improve Expr documentation (#10685)
add 1f15152069 chore: align re-exports in functions-aggregate (#10705)
add 20060880ba Fix typo in bench.sh (#10698)
add 6543d59e3f Fix incorrect statistics read for unsigned integers columns
in parquet (#10704)
add 5bd8751ecf Separate proto partitioning (#10708)
add 80a6b65dbb Support consuming Substrait with compound signature
function names (#10653)
add 95d931a21f Update object_store requirement from 0.9.1 to 0.10.1
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 (e247a4e302)
\
N -- N -- N refs/heads/dependabot/cargo/main/object_store-0.10.1
(95d931a21f)
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:
benchmarks/bench.sh | 10 +-
datafusion/common/src/scalar/mod.rs | 12 +-
.../datasource/physical_plan/parquet/statistics.rs | 12 +
datafusion/core/tests/expr_api/simplification.rs | 2 +-
datafusion/core/tests/parquet/arrow_statistics.rs | 60 +-
datafusion/expr/src/expr.rs | 96 +++-
datafusion/functions-aggregate/src/first_last.rs | 12 +-
datafusion/functions-aggregate/src/lib.rs | 42 +-
datafusion/functions-aggregate/src/median.rs | 6 +-
datafusion/functions-array/src/array_has.rs | 5 +-
datafusion/functions-array/src/cardinality.rs | 2 +-
datafusion/functions-array/src/concat.rs | 3 -
datafusion/functions-array/src/dimension.rs | 4 +-
datafusion/functions-array/src/empty.rs | 6 +-
datafusion/functions-array/src/except.rs | 2 +-
datafusion/functions-array/src/extract.rs | 13 +-
datafusion/functions-array/src/flatten.rs | 2 +-
datafusion/functions-array/src/length.rs | 2 +-
datafusion/functions-array/src/lib.rs | 40 +-
datafusion/functions-array/src/position.rs | 6 +-
datafusion/functions-array/src/range.rs | 4 +-
datafusion/functions-array/src/remove.rs | 9 +-
datafusion/functions-array/src/repeat.rs | 2 +-
datafusion/functions-array/src/replace.rs | 12 +-
datafusion/functions-array/src/resize.rs | 2 +-
datafusion/functions-array/src/reverse.rs | 2 +-
datafusion/functions-array/src/set_ops.rs | 9 +-
datafusion/functions-array/src/sort.rs | 2 +-
datafusion/functions-array/src/string.rs | 6 +-
datafusion/functions/src/lib.rs | 45 +-
datafusion/optimizer/src/push_down_limit.rs | 1 -
.../optimizer/src/replace_distinct_aggregate.rs | 4 +-
.../optimizer/tests/optimizer_integration.rs | 4 +-
datafusion/physical-plan/src/unnest.rs | 14 +-
datafusion/proto/proto/datafusion.proto | 36 +-
datafusion/proto/src/generated/pbjson.rs | 601 +++++++++++++++++++--
datafusion/proto/src/generated/prost.rs | 62 ++-
datafusion/proto/src/logical_plan/from_proto.rs | 10 +-
datafusion/proto/src/logical_plan/mod.rs | 67 ++-
datafusion/proto/src/logical_plan/to_proto.rs | 10 +-
datafusion/proto/src/physical_plan/from_proto.rs | 32 ++
datafusion/proto/src/physical_plan/mod.rs | 99 ++--
datafusion/proto/src/physical_plan/to_proto.rs | 32 +-
.../proto/tests/cases/roundtrip_logical_plan.rs | 25 +
.../proto/tests/cases/roundtrip_physical_plan.rs | 27 +
datafusion/sql/src/unparser/expr.rs | 8 +-
datafusion/sql/src/unparser/plan.rs | 39 +-
datafusion/sql/tests/sql_integration.rs | 3 +
datafusion/sqllogictest/test_files/aggregate.slt | 22 +-
datafusion/sqllogictest/test_files/distinct_on.slt | 10 +-
.../test_files/filter_without_sort_exec.slt | 4 +-
datafusion/sqllogictest/test_files/group_by.slt | 162 +++---
datafusion/sqllogictest/test_files/joins.slt | 26 +-
.../test_files/optimizer_group_by_constant.slt | 2 +-
.../sqllogictest/test_files/tpch/q1.slt.part | 6 +-
.../sqllogictest/test_files/tpch/q10.slt.part | 6 +-
.../sqllogictest/test_files/tpch/q12.slt.part | 6 +-
.../sqllogictest/test_files/tpch/q14.slt.part | 10 +-
.../sqllogictest/test_files/tpch/q15.slt.part | 12 +-
.../sqllogictest/test_files/tpch/q20.slt.part | 6 +-
.../sqllogictest/test_files/tpch/q3.slt.part | 12 +-
.../sqllogictest/test_files/tpch/q4.slt.part | 6 +-
.../sqllogictest/test_files/tpch/q5.slt.part | 6 +-
.../sqllogictest/test_files/tpch/q6.slt.part | 6 +-
.../sqllogictest/test_files/tpch/q7.slt.part | 6 +-
.../sqllogictest/test_files/tpch/q8.slt.part | 6 +-
datafusion/sqllogictest/test_files/unnest.slt | 9 +
datafusion/substrait/Cargo.toml | 5 +-
datafusion/substrait/src/logical_plan/consumer.rs | 206 +++++--
datafusion/substrait/src/logical_plan/producer.rs | 144 ++++-
datafusion/substrait/tests/cases/logical_plans.rs | 63 +++
datafusion/substrait/tests/cases/mod.rs | 1 +
.../tests/cases/roundtrip_logical_plan.rs | 98 +++-
.../tests/testdata/select_not_bool.substrait.json | 98 ++++
74 files changed, 1909 insertions(+), 533 deletions(-)
create mode 100644 datafusion/substrait/tests/cases/logical_plans.rs
create mode 100644
datafusion/substrait/tests/testdata/select_not_bool.substrait.json
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]