You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by cr...@apache.org on 2017/07/21 20:06:08 UTC

incubator-airflow git commit: [AIRFLOW-1437] Modify BigQueryTableDeleteOperator

Repository: incubator-airflow
Updated Branches:
  refs/heads/master b49986c3b -> b87903d12


[AIRFLOW-1437] Modify BigQueryTableDeleteOperator

BigQueryTableDeleteOperator should define deletion_dataset_table
as a template field.

Closes #2459 from yu-iskw/bq-delete


Project: http://git-wip-us.apache.org/repos/asf/incubator-airflow/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-airflow/commit/b87903d1
Tree: http://git-wip-us.apache.org/repos/asf/incubator-airflow/tree/b87903d1
Diff: http://git-wip-us.apache.org/repos/asf/incubator-airflow/diff/b87903d1

Branch: refs/heads/master
Commit: b87903d12e6bb71dee6bf65dc1ad07fb46a223cf
Parents: b49986c
Author: Yu ISHIKAWA <yu...@gmail.com>
Authored: Fri Jul 21 13:05:26 2017 -0700
Committer: Chris Riccomini <cr...@apache.org>
Committed: Fri Jul 21 13:05:37 2017 -0700

----------------------------------------------------------------------
 airflow/contrib/operators/bigquery_table_delete_operator.py | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-airflow/blob/b87903d1/airflow/contrib/operators/bigquery_table_delete_operator.py
----------------------------------------------------------------------
diff --git a/airflow/contrib/operators/bigquery_table_delete_operator.py b/airflow/contrib/operators/bigquery_table_delete_operator.py
index cd0c9dc..1cebace 100644
--- a/airflow/contrib/operators/bigquery_table_delete_operator.py
+++ b/airflow/contrib/operators/bigquery_table_delete_operator.py
@@ -37,6 +37,7 @@ class BigQueryTableDeleteOperator(BaseOperator):
         requested table does not exist.
     :type ignore_if_missing: boolean
     """
+    template_fields = ('deletion_dataset_table')
     ui_color = '#ffd1dc'
 
     @apply_defaults