Repository: incubator-airflow Updated Branches: refs/heads/master a2b65a102 -> 7d11444a5
[AIRFLOW-1009] Remove SQLOperator from Concepts page Remove SQLOperator from Concepts page. Update with a sample list of database backend-specific operators, lile, MySqlOperator, SqliteOperator, PostgresOperator, MsSqlOperator, OracleOperator, JdbcOperator Closes #2168 from Tagar/AIRFLOW-1009 Project: http://git-wip-us.apache.org/repos/asf/incubator-airflow/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-airflow/commit/7d11444a Tree: http://git-wip-us.apache.org/repos/asf/incubator-airflow/tree/7d11444a Diff: http://git-wip-us.apache.org/repos/asf/incubator-airflow/diff/7d11444a Branch: refs/heads/master Commit: 7d11444a53aca13a85a9aadddde91bed83f35441 Parents: a2b65a1 Author: Ruslan Dautkhanov <[email protected]> Authored: Sun Mar 19 10:08:37 2017 -0400 Committer: Jeremiah Lowin <[email protected]> Committed: Sun Mar 19 10:08:37 2017 -0400 ---------------------------------------------------------------------- docs/concepts.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-airflow/blob/7d11444a/docs/concepts.rst ---------------------------------------------------------------------- diff --git a/docs/concepts.rst b/docs/concepts.rst index 48c15a4..2760a6f 100644 --- a/docs/concepts.rst +++ b/docs/concepts.rst @@ -110,7 +110,7 @@ Airflow provides operators for many common tasks, including: - ``PythonOperator`` - calls an arbitrary Python function - ``EmailOperator`` - sends an email - ``HTTPOperator`` - sends an HTTP request -- ``SqlOperator`` - executes a SQL command +- ``MySqlOperator``, ``SqliteOperator``, ``PostgresOperator``, ``MsSqlOperator``, ``OracleOperator``, ``JdbcOperator``, etc. - executes a SQL command - ``Sensor`` - waits for a certain time, file, database row, S3 key, etc...
