You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by gi...@apache.org on 2022/08/26 16:53:47 UTC

[arrow-ballista] branch dependabot/cargo/master/sqlparser-0.21 updated (f98c0c85 -> db48ee69)

This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch dependabot/cargo/master/sqlparser-0.21
in repository https://gitbox.apache.org/repos/asf/arrow-ballista.git


 discard f98c0c85 Update sqlparser requirement from 0.18 to 0.21
     add 3f80b42a Stop Executor Impl, Executor Graceful Shutdown (#151)
     add 914dba6e Move ExecutionGraph encoding and decoding logic into execution_graph for better encapsulation (#150)
     add df9ce5e4 use info instead print (#154)
     add 9b7a3cec Update ahash requirement from 0.7 to 0.8 (#125)
     add 7b4ad2f5 Add job cancellation (#146)
     add f5ac1811 [Python] Fix Ballista Python bindings  (#157)
     add db48ee69 Update sqlparser requirement from 0.18 to 0.21

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   (f98c0c85)
            \
             N -- N -- N   refs/heads/dependabot/cargo/master/sqlparser-0.21 (db48ee69)

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/python_build.yml                 |    4 -
 .github/workflows/python_test.yaml                 |    2 -
 CONTRIBUTING.md                                    |    2 +-
 ballista/rust/core/Cargo.toml                      |    2 +-
 ballista/rust/core/proto/ballista.proto            |   24 +
 ballista/rust/core/src/error.rs                    |    9 +
 ballista/rust/executor/src/execution_loop.rs       |    9 +-
 ballista/rust/executor/src/executor.rs             |  224 ++-
 ballista/rust/executor/src/executor_server.rs      |  168 ++-
 ballista/rust/executor/src/flight_service.rs       |   17 +-
 ballista/rust/executor/src/lib.rs                  |    1 +
 ballista/rust/executor/src/main.rs                 |  187 ++-
 ballista/rust/executor/src/metrics/mod.rs          |    3 +-
 ballista/rust/executor/src/shutdown.rs             |  105 ++
 ballista/rust/executor/src/standalone.rs           |    2 +-
 ballista/rust/scheduler/Cargo.toml                 |    1 +
 .../rust/scheduler/src/scheduler_server/grpc.rs    |   29 +-
 .../rust/scheduler/src/scheduler_server/mod.rs     |   15 +-
 .../rust/scheduler/src/state/execution_graph.rs    | 1487 ++++++++++++--------
 .../rust/scheduler/src/state/executor_manager.rs   |   35 +
 ballista/rust/scheduler/src/state/task_manager.rs  |  294 ++--
 python/Cargo.lock                                  | 1464 -------------------
 python/Cargo.toml                                  |   30 +-
 python/README.md                                   |   22 +-
 python/{datafusion => ballista}/__init__.py        |    6 +-
 python/{datafusion => ballista}/functions.py       |    0
 python/{datafusion => ballista}/tests/__init__.py  |    0
 python/{datafusion => ballista}/tests/generic.py   |    0
 .../tests/test_aggregation.py                      |    8 +-
 .../{datafusion => ballista}/tests/test_catalog.py |    4 +-
 .../{datafusion => ballista}/tests/test_context.py |    4 +-
 .../tests/test_dataframe.py                        |   12 +-
 .../tests/test_functions.py                        |   10 +-
 .../{datafusion => ballista}/tests/test_imports.py |   24 +-
 python/{datafusion => ballista}/tests/test_sql.py  |    8 +-
 python/{datafusion => ballista}/tests/test_udaf.py |    5 +-
 python/pyproject.toml                              |    8 +-
 python/requirements-310.txt                        |  208 +++
 python/rust-toolchain                              |    1 -
 python/src/ballista_context.rs                     |  125 ++
 python/src/catalog.rs                              |   12 +-
 python/src/context.rs                              |  115 +-
 python/src/dataframe.rs                            |   63 +-
 python/src/dataset.rs                              |  126 ++
 python/src/dataset_exec.rs                         |  275 ++++
 python/src/errors.rs                               |   54 +
 python/src/expression.rs                           |   96 +-
 python/src/functions.rs                            |   18 +-
 python/src/lib.rs                                  |   27 +-
 python/src/pyarrow_filter_expression.rs            |  219 +++
 python/src/udaf.rs                                 |   25 +-
 python/src/udf.rs                                  |    8 +-
 python/src/utils.rs                                |   11 +-
 53 files changed, 3035 insertions(+), 2573 deletions(-)
 create mode 100644 ballista/rust/executor/src/shutdown.rs
 delete mode 100644 python/Cargo.lock
 rename python/{datafusion => ballista}/__init__.py (96%)
 rename python/{datafusion => ballista}/functions.py (100%)
 rename python/{datafusion => ballista}/tests/__init__.py (100%)
 rename python/{datafusion => ballista}/tests/generic.py (100%)
 rename python/{datafusion => ballista}/tests/test_aggregation.py (89%)
 rename python/{datafusion => ballista}/tests/test_catalog.py (96%)
 rename python/{datafusion => ballista}/tests/test_context.py (96%)
 rename python/{datafusion => ballista}/tests/test_dataframe.py (95%)
 rename python/{datafusion => ballista}/tests/test_functions.py (97%)
 rename python/{datafusion => ballista}/tests/test_imports.py (73%)
 rename python/{datafusion => ballista}/tests/test_sql.py (97%)
 rename python/{datafusion => ballista}/tests/test_udaf.py (95%)
 create mode 100644 python/requirements-310.txt
 delete mode 100644 python/rust-toolchain
 create mode 100644 python/src/ballista_context.rs
 create mode 100644 python/src/dataset.rs
 create mode 100644 python/src/dataset_exec.rs
 create mode 100644 python/src/pyarrow_filter_expression.rs