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


 discard 9fc41ee3 build(deps): bump object_store from 0.12.1 to 0.12.2
     add 9b6acec0 Support types other than String and Int for partition columns 
(#1154)
     add 98dc06b5 feat: Support Parquet writer options (#1123)
     add 1812a0d3 Fix signature of `__arrow_c_stream__` (#1168)
     add 0d3c37f9 Consolidate DataFrame Docs: Merge HTML Rendering Section as 
Subpage (#1161)
     add ef62fa89 Add compression_level support to ParquetWriterOptions and 
enhance write_parquet to accept full options object (#1169)
     add 03921d96 feat: dataframe string formatter (#1170)
     add 95456342 feat: collect once during display() in jupyter notebooks 
(#1167)
     add 9362f531 feat: python based catalog and schema provider (#1156)
     add 6a1dc2d1 build(deps): bump object_store from 0.12.1 to 0.12.2

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   (9fc41ee3)
            \
             N -- N -- N   refs/heads/dependabot/cargo/main/object_store-0.12.2 
(6a1dc2d1)

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                                         |  19 +
 Cargo.toml                                         |   2 +
 docs/source/api/dataframe.rst                      | 387 ------------
 docs/source/api/index.rst                          |  27 -
 docs/source/index.rst                              |   4 +-
 docs/source/user-guide/basics.rst                  |   2 +-
 docs/source/user-guide/data-sources.rst            |  56 ++
 docs/source/user-guide/dataframe/index.rst         | 209 ++++++
 .../{dataframe.rst => dataframe/rendering.rst}     | 103 +--
 examples/datafusion-ffi-example/Cargo.lock         |   1 +
 examples/datafusion-ffi-example/Cargo.toml         |   1 +
 .../python/tests/_test_catalog_provider.py         |  60 ++
 .../datafusion-ffi-example/src/catalog_provider.rs | 179 ++++++
 examples/datafusion-ffi-example/src/lib.rs         |   3 +
 python/datafusion/__init__.py                      |  10 +-
 python/datafusion/catalog.py                       | 195 +++++-
 python/datafusion/context.py                       |  90 ++-
 python/datafusion/dataframe.py                     | 285 ++++++++-
 .../{html_formatter.py => dataframe_formatter.py}  |  30 +-
 python/datafusion/html_formatter.py                | 700 +--------------------
 python/datafusion/io.py                            |   8 +-
 python/tests/test_catalog.py                       | 173 ++++-
 python/tests/test_context.py                       |  40 +-
 python/tests/test_dataframe.py                     | 426 ++++++++++++-
 python/tests/test_sql.py                           |  56 +-
 python/tests/test_substrait.py                     |   4 +-
 src/catalog.rs                                     | 490 +++++++++++++--
 src/common/data_type.rs                            | 120 ++--
 src/context.rs                                     | 150 +++--
 src/dataframe.rs                                   | 259 ++++++--
 src/expr.rs                                        |  15 +-
 src/expr/aggregate.rs                              |   2 +-
 src/expr/aggregate_expr.rs                         |   2 +-
 src/expr/alias.rs                                  |   2 +-
 src/expr/analyze.rs                                |   2 +-
 src/expr/between.rs                                |   2 +-
 src/expr/column.rs                                 |   2 +-
 src/expr/copy_to.rs                                |   4 +-
 src/expr/create_catalog.rs                         |   2 +-
 src/expr/create_catalog_schema.rs                  |   2 +-
 src/expr/create_external_table.rs                  |   2 +-
 src/expr/create_function.rs                        |   2 +-
 src/expr/create_index.rs                           |   2 +-
 src/expr/create_memory_table.rs                    |   2 +-
 src/expr/create_view.rs                            |   2 +-
 src/expr/describe_table.rs                         |   2 +-
 src/expr/distinct.rs                               |   5 +-
 src/expr/drop_catalog_schema.rs                    |   2 +-
 src/expr/drop_function.rs                          |   2 +-
 src/expr/drop_table.rs                             |   2 +-
 src/expr/drop_view.rs                              |   2 +-
 src/expr/empty_relation.rs                         |   2 +-
 src/expr/filter.rs                                 |   2 +-
 src/expr/join.rs                                   |   2 +-
 src/expr/like.rs                                   |   6 +-
 src/expr/limit.rs                                  |   2 +-
 src/expr/projection.rs                             |   2 +-
 src/expr/recursive_query.rs                        |   2 +-
 src/expr/repartition.rs                            |   2 +-
 src/expr/sort.rs                                   |   2 +-
 src/expr/sort_expr.rs                              |   2 +-
 src/expr/subquery.rs                               |   2 +-
 src/expr/subquery_alias.rs                         |   2 +-
 src/expr/table_scan.rs                             |   2 +-
 src/expr/union.rs                                  |   2 +-
 src/expr/unnest.rs                                 |   2 +-
 src/expr/unnest_expr.rs                            |   2 +-
 src/expr/window.rs                                 |  11 +-
 src/functions.rs                                   |   2 +-
 src/lib.rs                                         |  12 +-
 src/physical_plan.rs                               |   3 +-
 src/sql/logical.rs                                 |   3 +-
 src/utils.rs                                       |  16 +-
 73 files changed, 2698 insertions(+), 1534 deletions(-)
 delete mode 100644 docs/source/api/dataframe.rst
 delete mode 100644 docs/source/api/index.rst
 create mode 100644 docs/source/user-guide/dataframe/index.rst
 rename docs/source/user-guide/{dataframe.rst => dataframe/rendering.rst} (72%)
 create mode 100644 
examples/datafusion-ffi-example/python/tests/_test_catalog_provider.py
 create mode 100644 examples/datafusion-ffi-example/src/catalog_provider.rs
 copy python/datafusion/{html_formatter.py => dataframe_formatter.py} (96%)


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@datafusion.apache.org
For additional commands, e-mail: commits-h...@datafusion.apache.org

Reply via email to