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 2021/02/26 22:54:57 UTC

[airflow] branch master updated (aa28e4e -> 33214d9)

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

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


    from aa28e4e  Adds --dry-run-docker flag to just print the docker commands (#14468)
     add 33214d9  Refactor SQL/BigQuery/Qubole/Druid Check operators (#12677)

No new revisions were added by this update.

Summary of changes:
 airflow/operators/druid_check_operator.py          |   2 +-
 airflow/operators/sql.py                           | 198 +++++++++------------
 airflow/providers/apache/druid/hooks/druid.py      |   2 +
 .../apache/druid/operators/druid_check.py          |  78 ++------
 airflow/providers/apache/druid/provider.yaml       |   4 +
 .../providers/google/cloud/operators/bigquery.py   |  43 ++---
 airflow/providers/google/provider.yaml             |   2 +-
 airflow/providers/qubole/operators/qubole.py       |  10 +-
 airflow/providers/qubole/operators/qubole_check.py | 124 +++++--------
 .../run_install_and_test_provider_packages.sh      |   2 +-
 tests/core/test_core_to_contrib.py                 |   2 +-
 tests/core/test_providers_manager.py               |   1 +
 tests/deprecated_classes.py                        |   2 +-
 tests/operators/test_sql.py                        | 137 ++++++++------
 .../apache/druid/operators/test_druid_check.py     |  65 -------
 .../google/cloud/operators/test_bigquery.py        |  45 +++--
 .../qubole/operators/test_qubole_check.py          |  67 ++++++-
 17 files changed, 353 insertions(+), 431 deletions(-)
 delete mode 100644 tests/providers/apache/druid/operators/test_druid_check.py