This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch
dependabot/cargo/main/arrow-parquet-9e0b249e9c
in repository https://gitbox.apache.org/repos/asf/datafusion.git
discard 6b2db82ccc chore(deps): bump the arrow-parquet group with 2 updates
add cd857490e2 chore(deps): bump aws-config from 1.6.0 to 1.6.1 (#15470)
add fa452e6789 Fix clickbench avg time compute (#15472)
add 0f7b1c58f8 minor: Allow to run TPCH bench for a specific query (#15467)
add cd96b26cae Migrate subtrait tests to insta, part1 (#15444)
add 4a3f70c285 Add `FileScanConfigBuilder` (#15352)
add b4b8f6489c Add documentation for `Run extended tests` command (#15463)
add 9071503268 Update ClickBench queries to avoid to_timestamp_seconds
(#15475)
add 7e0738a979 Remove CoalescePartitions insertion from HashJoinExec
(#15476)
add e2b7919e28 Improve performance sort TPCH q3 with Utf8Vew (
Sort-preserving merging on a single Utf8View ) (#15447)
add 14635dab4e perf: Reuse row converter during sort (#15302)
add 102f879e60 Migrate-substrait-tests-to-insta, part2 (#15480)
add dc8d11930f Revert "Remove CoalescePartitions insertion from
HashJoinExec (#15476)" (#15496)
add 1171574286 fix: Assertion fail in external sort (#15469)
add f5d96b0826 bench: Document how to use cross platform Samply profiler
(#15481)
add 19a1e58071 Migrate datafusion/sql tests to insta, part1 (#15497)
add bff1c5a54c chore(deps): bump the arrow-parquet group with 2 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 (6b2db82ccc)
\
N -- N -- N
refs/heads/dependabot/cargo/main/arrow-parquet-9e0b249e9c (bff1c5a54c)
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 | 44 +-
Cargo.toml | 13 +-
benchmarks/README.md | 18 +-
benchmarks/bench.sh | 16 +-
benchmarks/queries/clickbench/queries.sql | 6 +-
benchmarks/src/clickbench.rs | 2 +-
datafusion-cli/Cargo.toml | 2 +-
.../examples/advanced_parquet_index.rs | 15 +-
datafusion-examples/examples/csv_json_opener.rs | 15 +-
datafusion-examples/examples/parquet_index.rs | 18 +-
.../core/src/datasource/file_format/arrow.rs | 10 +-
datafusion/core/src/datasource/file_format/mod.rs | 10 +-
datafusion/core/src/datasource/listing/table.rs | 7 +-
datafusion/core/src/datasource/memory.rs | 2 +-
datafusion/core/src/datasource/mod.rs | 15 +-
.../core/src/datasource/physical_plan/avro.rs | 33 +-
.../core/src/datasource/physical_plan/csv.rs | 88 ++-
.../core/src/datasource/physical_plan/json.rs | 36 +-
.../core/src/datasource/physical_plan/mod.rs | 1 +
.../core/src/datasource/physical_plan/parquet.rs | 26 +-
datafusion/core/src/test/mod.rs | 9 +-
datafusion/core/src/test_util/parquet.rs | 12 +-
datafusion/core/tests/fuzz_cases/aggregate_fuzz.rs | 4 +-
datafusion/core/tests/fuzz_cases/pruning.rs | 14 +-
datafusion/core/tests/fuzz_cases/window_fuzz.rs | 8 +-
datafusion/core/tests/memory_limit/mod.rs | 33 +-
datafusion/core/tests/parquet/custom_reader.rs | 11 +-
.../core/tests/parquet/external_access_plan.rs | 11 +-
datafusion/core/tests/parquet/page_pruning.rs | 8 +-
datafusion/core/tests/parquet/schema_coercion.rs | 20 +-
.../physical_optimizer/enforce_distribution.rs | 39 +-
.../tests/physical_optimizer/enforce_sorting.rs | 22 +-
.../physical_optimizer/projection_pushdown.rs | 21 +-
.../core/tests/physical_optimizer/test_utils.rs | 14 +-
datafusion/datasource-avro/src/file_format.rs | 8 +-
datafusion/datasource-csv/src/file_format.rs | 16 +-
datafusion/datasource-csv/src/mod.rs | 4 +-
datafusion/datasource-csv/src/source.rs | 9 +-
datafusion/datasource-json/src/file_format.rs | 14 +-
datafusion/datasource-parquet/src/file_format.rs | 14 +-
datafusion/datasource-parquet/src/source.rs | 18 +-
datafusion/datasource/src/file_scan_config.rs | 470 +++++++++++++-
datafusion/datasource/src/file_stream.rs | 7 +-
datafusion/datasource/src/memory.rs | 8 +-
datafusion/datasource/src/source.rs | 4 +
datafusion/physical-plan/src/sorts/cursor.rs | 2 +-
datafusion/physical-plan/src/sorts/sort.rs | 197 ++++--
datafusion/proto/src/physical_plan/from_proto.rs | 7 +-
datafusion/proto/src/physical_plan/mod.rs | 19 +-
.../proto/tests/cases/roundtrip_physical_plan.rs | 104 +--
datafusion/sql/Cargo.toml | 1 +
datafusion/sql/tests/sql_integration.rs | 715 +++++++++++++--------
datafusion/substrait/Cargo.toml | 1 +
datafusion/substrait/src/physical_plan/consumer.rs | 29 +-
.../substrait/tests/cases/consumer_integration.rs | 608 ++++++++++--------
.../substrait/tests/cases/emit_kind_tests.rs | 72 ++-
datafusion/substrait/tests/cases/function_test.rs | 17 +-
datafusion/substrait/tests/cases/logical_plans.rs | 80 ++-
.../tests/cases/roundtrip_logical_plan.rs | 335 ++++++----
.../tests/cases/roundtrip_physical_plan.rs | 13 +-
datafusion/substrait/tests/cases/serialize.rs | 29 +-
.../substrait/tests/cases/substrait_validations.rs | 37 +-
docs/source/contributor-guide/testing.md | 7 +
docs/source/library-user-guide/profiling.md | 43 +-
docs/source/library-user-guide/samply_profiler.png | Bin 0 -> 605887 bytes
65 files changed, 2320 insertions(+), 1171 deletions(-)
create mode 100644 docs/source/library-user-guide/samply_profiler.png
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]