You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dolphinscheduler.apache.org by zh...@apache.org on 2021/12/17 03:12:58 UTC

[dolphinscheduler] branch dev updated (91e3423 -> 0c7aa4e)

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

zhongjiajie pushed a change to branch dev
in repository https://gitbox.apache.org/repos/asf/dolphinscheduler.git.


    from 91e3423  feat: Added login pages and functions (#7456)
     add 0c7aa4e  [Feature-7349] [Python]Add workflow as code task type datax (#7437)

No new revisions were added by this update.

Summary of changes:
 .../examples/task_datax_example.py                 |  50 +++++++++
 .../src/pydolphinscheduler/constants.py            |   1 +
 .../src/pydolphinscheduler/core/database.py        |  56 ++++++++++
 .../src/pydolphinscheduler/tasks/database.py       |  80 -------------
 .../src/pydolphinscheduler/tasks/datax.py          | 121 ++++++++++++++++++++
 .../src/pydolphinscheduler/tasks/procedure.py      |  22 +++-
 .../src/pydolphinscheduler/tasks/sql.py            |  22 +++-
 .../pydolphinscheduler/tests/core/test_database.py |  54 +++++++++
 .../tests/tasks/test_database.py                   | 122 --------------------
 .../pydolphinscheduler/tests/tasks/test_datax.py   | 124 +++++++++++++++++++++
 .../tests/tasks/test_procedure.py                  |  20 +---
 .../pydolphinscheduler/tests/tasks/test_sql.py     |  24 +---
 12 files changed, 448 insertions(+), 248 deletions(-)
 create mode 100644 dolphinscheduler-python/pydolphinscheduler/examples/task_datax_example.py
 create mode 100644 dolphinscheduler-python/pydolphinscheduler/src/pydolphinscheduler/core/database.py
 delete mode 100644 dolphinscheduler-python/pydolphinscheduler/src/pydolphinscheduler/tasks/database.py
 create mode 100644 dolphinscheduler-python/pydolphinscheduler/src/pydolphinscheduler/tasks/datax.py
 create mode 100644 dolphinscheduler-python/pydolphinscheduler/tests/core/test_database.py
 delete mode 100644 dolphinscheduler-python/pydolphinscheduler/tests/tasks/test_database.py
 create mode 100644 dolphinscheduler-python/pydolphinscheduler/tests/tasks/test_datax.py