Repository: incubator-airflow Updated Branches: refs/heads/master ddc502694 -> 111ce574c
[AIRFLOW-1489] Fix typo in BigQueryCheckOperator Closes #2501 from mrkm4ntr/airflow-1489 Project: http://git-wip-us.apache.org/repos/asf/incubator-airflow/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-airflow/commit/111ce574 Tree: http://git-wip-us.apache.org/repos/asf/incubator-airflow/tree/111ce574 Diff: http://git-wip-us.apache.org/repos/asf/incubator-airflow/diff/111ce574 Branch: refs/heads/master Commit: 111ce574c54a1ffe566e2ed22a73cda04c130153 Parents: ddc5026 Author: Shiintaro Murakami <[email protected]> Authored: Mon Aug 7 09:25:19 2017 -0700 Committer: Chris Riccomini <[email protected]> Committed: Mon Aug 7 09:25:19 2017 -0700 ---------------------------------------------------------------------- airflow/contrib/operators/bigquery_check_operator.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-airflow/blob/111ce574/airflow/contrib/operators/bigquery_check_operator.py ---------------------------------------------------------------------- diff --git a/airflow/contrib/operators/bigquery_check_operator.py b/airflow/contrib/operators/bigquery_check_operator.py index 1ff8031..e5a8f0f 100644 --- a/airflow/contrib/operators/bigquery_check_operator.py +++ b/airflow/contrib/operators/bigquery_check_operator.py @@ -19,7 +19,7 @@ from airflow.utils.decorators import apply_defaults class BigQueryCheckOperator(CheckOperator): """ - Performs checks against Presto. The ``BigQueryCheckOperator`` expects + Performs checks against BigQuery. The ``BigQueryCheckOperator`` expects a sql query that will return a single row. Each value on that first row is evaluated using python ``bool`` casting. If any of the values return ``False`` the check is failed and errors out. @@ -48,7 +48,7 @@ class BigQueryCheckOperator(CheckOperator): :param sql: the sql to be executed :type sql: string :param bigquery_conn_id: reference to the BigQuery database - :type presto_conn_id: string + :type bigquery_conn_id: string """ @apply_defaults
