You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by ka...@apache.org on 2022/09/01 22:57:33 UTC

[airflow] branch main updated (479ab54520 -> 4bd0734a35)

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

kaxilnaik pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


    from 479ab54520 Enable pushing early image cache to ghcr.io registry (#26119)
     add 4bd0734a35 Add Azure synapse operator (#26038)

No new revisions were added by this update.

Summary of changes:
 airflow/providers/microsoft/azure/hooks/synapse.py | 194 +++++++++++++++++++++
 .../providers/microsoft/azure/operators/synapse.py | 106 +++++++++++
 airflow/providers/microsoft/azure/provider.yaml    |  14 ++
 .../connections/{adf.rst => azure_synapse.rst}     |  50 ++----
 .../operators/azure_synapse.rst                    |  49 ++++++
 generated/provider_dependencies.json               |   3 +-
 .../microsoft/azure/hooks/test_azure_synapse.py    | 182 +++++++++++++++++++
 .../azure/operators/test_azure_synapse.py          | 109 ++++++++++++
 .../microsoft/azure/example_azure_synapse.py       |  72 ++++++++
 9 files changed, 741 insertions(+), 38 deletions(-)
 create mode 100644 airflow/providers/microsoft/azure/hooks/synapse.py
 create mode 100644 airflow/providers/microsoft/azure/operators/synapse.py
 copy docs/apache-airflow-providers-microsoft-azure/connections/{adf.rst => azure_synapse.rst} (51%)
 create mode 100644 docs/apache-airflow-providers-microsoft-azure/operators/azure_synapse.rst
 create mode 100644 tests/providers/microsoft/azure/hooks/test_azure_synapse.py
 create mode 100644 tests/providers/microsoft/azure/operators/test_azure_synapse.py
 create mode 100644 tests/system/providers/microsoft/azure/example_azure_synapse.py