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.63
in repository https://gitbox.apache.org/repos/asf/datafusion-python.git


 discard 1923f2f  build(deps): bump syn from 2.0.60 to 2.0.63
     add d71c436  Add examples from TPC-H (#666)
     add d41eba4  ci: clean conda cache before building the packages (#689)
     add 01a370e  Upgrade to datafusion 38 (#691)
     add 5ac80bd  build(deps): bump syn from 2.0.60 to 2.0.63

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   (1923f2f)
            \
             N -- N -- N   refs/heads/dependabot/cargo/main/syn-2.0.63 (5ac80bd)

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/conda.yml                        |   3 +
 Cargo.lock                                         | 145 ++++++++---------
 Cargo.toml                                         |  16 +-
 benchmarks/tpch/tpch-gen.sh                        |   6 +-
 datafusion/__init__.py                             |   3 -
 datafusion/tests/test_dataframe.py                 |   6 +-
 datafusion/tests/test_imports.py                   |   7 +-
 examples/README.md                                 |  64 ++++++++
 examples/tpch/.gitignore                           |   2 +
 examples/tpch/README.md                            |  57 +++++++
 examples/tpch/convert_data_to_parquet.py           | 142 +++++++++++++++++
 examples/tpch/q01_pricing_summary_report.py        |  90 +++++++++++
 examples/tpch/q02_minimum_cost_supplier.py         | 139 ++++++++++++++++
 examples/tpch/q03_shipping_priority.py             |  86 ++++++++++
 examples/tpch/q04_order_priority_checking.py       |  80 ++++++++++
 examples/tpch/q05_local_supplier_volume.py         | 102 ++++++++++++
 examples/tpch/q06_forecasting_revenue_change.py    |  87 ++++++++++
 examples/tpch/q07_volume_shipping.py               | 123 +++++++++++++++
 examples/tpch/q08_market_share.py                  | 175 +++++++++++++++++++++
 examples/tpch/q09_product_type_profit_measure.py   |  93 +++++++++++
 examples/tpch/q10_returned_item_reporting.py       | 108 +++++++++++++
 .../tpch/q11_important_stock_identification.py     |  82 ++++++++++
 examples/tpch/q12_ship_mode_order_priority.py      | 112 +++++++++++++
 examples/tpch/q13_customer_distribution.py         |  64 ++++++++
 examples/tpch/q14_promotion_effect.py              |  81 ++++++++++
 examples/tpch/q15_top_supplier.py                  |  87 ++++++++++
 examples/tpch/q16_part_supplier_relationship.py    |  85 ++++++++++
 examples/tpch/q17_small_quantity_order.py          |  69 ++++++++
 examples/tpch/q18_large_volume_customer.py         |  65 ++++++++
 examples/tpch/q19_discounted_revenue.py            | 137 ++++++++++++++++
 examples/tpch/q20_potential_part_promotion.py      |  97 ++++++++++++
 examples/tpch/q21_suppliers_kept_orders_waiting.py | 114 ++++++++++++++
 examples/tpch/q22_global_sales_opportunity.py      |  76 +++++++++
 src/common.rs                                      |   2 -
 src/common/df_field.rs                             | 111 -------------
 src/dataframe.rs                                   |   2 +-
 src/dataset.rs                                     |  16 +-
 src/expr.rs                                        |  26 ++-
 src/expr/scalar_function.rs                        |  65 --------
 src/functions.rs                                   | 152 +++++++++---------
 src/udf.rs                                         |   2 +-
 41 files changed, 2604 insertions(+), 375 deletions(-)
 create mode 100644 examples/tpch/.gitignore
 create mode 100644 examples/tpch/README.md
 create mode 100644 examples/tpch/convert_data_to_parquet.py
 create mode 100644 examples/tpch/q01_pricing_summary_report.py
 create mode 100644 examples/tpch/q02_minimum_cost_supplier.py
 create mode 100644 examples/tpch/q03_shipping_priority.py
 create mode 100644 examples/tpch/q04_order_priority_checking.py
 create mode 100644 examples/tpch/q05_local_supplier_volume.py
 create mode 100644 examples/tpch/q06_forecasting_revenue_change.py
 create mode 100644 examples/tpch/q07_volume_shipping.py
 create mode 100644 examples/tpch/q08_market_share.py
 create mode 100644 examples/tpch/q09_product_type_profit_measure.py
 create mode 100644 examples/tpch/q10_returned_item_reporting.py
 create mode 100644 examples/tpch/q11_important_stock_identification.py
 create mode 100644 examples/tpch/q12_ship_mode_order_priority.py
 create mode 100644 examples/tpch/q13_customer_distribution.py
 create mode 100644 examples/tpch/q14_promotion_effect.py
 create mode 100644 examples/tpch/q15_top_supplier.py
 create mode 100644 examples/tpch/q16_part_supplier_relationship.py
 create mode 100644 examples/tpch/q17_small_quantity_order.py
 create mode 100644 examples/tpch/q18_large_volume_customer.py
 create mode 100644 examples/tpch/q19_discounted_revenue.py
 create mode 100644 examples/tpch/q20_potential_part_promotion.py
 create mode 100644 examples/tpch/q21_suppliers_kept_orders_waiting.py
 create mode 100644 examples/tpch/q22_global_sales_opportunity.py
 delete mode 100644 src/common/df_field.rs
 delete mode 100644 src/expr/scalar_function.rs


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to