This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch dependabot/cargo/main/mimalloc-0.1.47 in repository https://gitbox.apache.org/repos/asf/datafusion-python.git
discard 2def1518 build(deps): bump mimalloc from 0.1.46 to 0.1.47 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 4c6d81d1 build(deps): bump mimalloc from 0.1.46 to 0.1.47 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 (2def1518) \ N -- N -- N refs/heads/dependabot/cargo/main/mimalloc-0.1.47 (4c6d81d1) 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 | 6 +- python/datafusion/catalog.py | 195 +++++- python/datafusion/context.py | 24 +- python/datafusion/dataframe.py | 66 +- .../{html_formatter.py => dataframe_formatter.py} | 30 +- python/datafusion/html_formatter.py | 700 +-------------------- python/tests/test_catalog.py | 173 ++++- python/tests/test_context.py | 40 +- python/tests/test_dataframe.py | 20 +- python/tests/test_sql.py | 30 +- python/tests/test_substrait.py | 4 +- src/catalog.rs | 490 +++++++++++++-- src/common/data_type.rs | 120 ++-- src/context.rs | 61 +- src/dataframe.rs | 133 ++-- 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 | 10 +- src/physical_plan.rs | 3 +- src/sql/logical.rs | 3 +- src/utils.rs | 16 +- 72 files changed, 1810 insertions(+), 1476 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