This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch dependabot/cargo/main/syn-2.0.100
in repository https://gitbox.apache.org/repos/asf/datafusion.git
discard 14f00073ed chore(deps): bump syn from 2.0.98 to 2.0.100
add ed2c1ca224 Do not display logical_plan win explain `tree` mode (#15132)
add ee77d5889a fix: unparse for subqueryalias (#15068)
add 04d823b852 Substrait support for propagating TableScan.filters to
Substrait ReadRel.filter (#14194)
add 6f285d6e51 Fix wasm32 build on version 46 (#15102)
add f31ddd6940 Fix broken `serde` feature (#15124)
add 51f0833dfe Add `insta` / snapshot testing to CLI & set up AWS mock
(#13672)
add e33044c3f7 chore(deps): bump syn from 2.0.98 to 2.0.100
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 (14f00073ed)
\
N -- N -- N refs/heads/dependabot/cargo/main/syn-2.0.100
(e33044c3f7)
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/rust.yml | 34 ++++-
Cargo.lock | 50 +++++++
datafusion-cli/CONTRIBUTING.md | 75 ++++++++++
datafusion-cli/Cargo.toml | 2 +
datafusion-cli/tests/cli_integration.rs | 123 +++++++++++++---
datafusion-cli/tests/snapshots/aws_options.snap | 25 ++++
.../tests/snapshots/cli@load_local_csv.sql.snap | 26 ++++
.../tests/snapshots/cli@load_s3_csv.sql.snap | 26 ++++
datafusion-cli/tests/snapshots/[email protected] | 23 +++
.../tests/snapshots/[email protected] | 21 +++
datafusion-cli/tests/snapshots/[email protected] | 18 +++
.../tests/snapshots/[email protected] | 17 +++
.../tests/snapshots/[email protected] | 17 +++
.../tests/snapshots/[email protected] | 21 +++
datafusion-cli/tests/snapshots/[email protected] | 18 +++
.../tests/snapshots/[email protected] | 17 +++
.../tests/snapshots/cli_quick_test@batch_size.snap | 21 +++
.../tests/snapshots/[email protected] | 19 +++
.../tests/snapshots/[email protected] | 24 ++++
.../{data/backslash.txt => sql/backslash.sql} | 0
.../tests/sql/integration/load_local_csv.sql | 6 +
.../tests/sql/integration/load_s3_csv.sql | 5 +
.../tests/{data/sql.txt => sql/select.sql} | 0
datafusion/core/Cargo.toml | 7 +-
datafusion/core/src/physical_planner.rs | 5 +-
datafusion/core/tests/core_integration.rs | 5 +
.../udf_udaf_udwf.rs => core/tests/serde/mod.rs} | 19 ++-
datafusion/datasource-parquet/Cargo.toml | 2 +-
datafusion/datasource-parquet/src/file_format.rs | 2 -
datafusion/physical-plan/src/display.rs | 2 +-
datafusion/sql/src/unparser/plan.rs | 11 +-
datafusion/sql/tests/cases/plan_to_sql.rs | 66 ++++++++-
.../sqllogictest/test_files/explain_tree.slt | 154 ---------------------
datafusion/substrait/src/logical_plan/consumer.rs | 17 ++-
datafusion/substrait/src/logical_plan/producer.rs | 22 ++-
.../tests/cases/roundtrip_logical_plan.rs | 66 +++++++++
datafusion/wasmtest/Cargo.toml | 2 +-
docs/source/contributor-guide/testing.md | 12 ++
38 files changed, 781 insertions(+), 199 deletions(-)
create mode 100644 datafusion-cli/CONTRIBUTING.md
create mode 100644 datafusion-cli/tests/snapshots/aws_options.snap
create mode 100644 datafusion-cli/tests/snapshots/cli@load_local_csv.sql.snap
create mode 100644 datafusion-cli/tests/snapshots/cli@load_s3_csv.sql.snap
create mode 100644 datafusion-cli/tests/snapshots/[email protected]
create mode 100644 datafusion-cli/tests/snapshots/[email protected]
create mode 100644 datafusion-cli/tests/snapshots/[email protected]
create mode 100644 datafusion-cli/tests/snapshots/[email protected]
create mode 100644 datafusion-cli/tests/snapshots/[email protected]
create mode 100644 datafusion-cli/tests/snapshots/[email protected]
create mode 100644 datafusion-cli/tests/snapshots/[email protected]
create mode 100644 datafusion-cli/tests/snapshots/[email protected]
create mode 100644
datafusion-cli/tests/snapshots/cli_quick_test@batch_size.snap
create mode 100644 datafusion-cli/tests/snapshots/[email protected]
create mode 100644
datafusion-cli/tests/snapshots/[email protected]
rename datafusion-cli/tests/{data/backslash.txt => sql/backslash.sql} (100%)
create mode 100644 datafusion-cli/tests/sql/integration/load_local_csv.sql
create mode 100644 datafusion-cli/tests/sql/integration/load_s3_csv.sql
rename datafusion-cli/tests/{data/sql.txt => sql/select.sql} (100%)
copy datafusion/{ffi/src/tests/udf_udaf_udwf.rs => core/tests/serde/mod.rs}
(59%)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]