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 2020/08/26 22:57:51 UTC

[airflow] branch master updated: Remove Outdated SQLCheckOperator Docstring (#10589)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 8624224  Remove Outdated SQLCheckOperator Docstring (#10589)
8624224 is described below

commit 86242247155a582f771a380b4c2d94bce80d6929
Author: Ryan McCormack <ry...@gmail.com>
AuthorDate: Wed Aug 26 18:56:40 2020 -0400

    Remove Outdated SQLCheckOperator Docstring (#10589)
    
    This method is now implemented
---
 airflow/operators/sql.py | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/airflow/operators/sql.py b/airflow/operators/sql.py
index a5dba9c..7e005ff 100644
--- a/airflow/operators/sql.py
+++ b/airflow/operators/sql.py
@@ -66,10 +66,6 @@ class SQLCheckOperator(BaseOperator):
     publishing dubious data, or on the side and receive email alerts
     without stopping the progress of the DAG.
 
-    Note that this is an abstract class and get_db_hook
-    needs to be defined. Whereas a get_db_hook is hook that gets a
-    single record from an external source.
-
     :param sql: the sql to be executed. (templated)
     :type sql: str
     """