This is an automated email from the ASF dual-hosted git repository.
dstandish pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new 33a52fa Update to correctly resolve 'PostgresOperator' (#19212)
33a52fa is described below
commit 33a52fa3de083384cb597800a9f31418389d86c1
Author: Benjamin Chang <[email protected]>
AuthorDate: Mon Oct 25 19:47:58 2021 -0500
Update to correctly resolve 'PostgresOperator' (#19212)
Changed ``airflow.providers.postgres.operator.postgres.PostgresOperator``
to ``airflow.providers.postgres.operators.postgres.PostgresOperator``
---
.../operators/postgres_operator_howto_guide.rst | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/docs/apache-airflow-providers-postgres/operators/postgres_operator_howto_guide.rst
b/docs/apache-airflow-providers-postgres/operators/postgres_operator_howto_guide.rst
index e2392e3..f035920 100644
---
a/docs/apache-airflow-providers-postgres/operators/postgres_operator_howto_guide.rst
+++
b/docs/apache-airflow-providers-postgres/operators/postgres_operator_howto_guide.rst
@@ -27,9 +27,9 @@ workflow. Airflow is essentially a graph (Directed Acyclic
Graph) made up of tas
A task defined or implemented by a operator is a unit of work in your data
pipeline.
The purpose of Postgres Operator is to define tasks involving interactions
with the PostgreSQL database.
- In ``Airflow-2.0``, the ``PostgresOperator`` class resides at
``airflow.providers.postgres.operator.postgres``.
+ In ``Airflow-2.0``, the ``PostgresOperator`` class resides at
``airflow.providers.postgres.operators.postgres``.
-Under the hood, the
:class:`~airflow.providers.postgres.operator.postgres.PostgresOperator`
delegates its heavy lifting to the
:class:`~airflow.providers.postgres.hooks.postgres.PostgresHook`.
+Under the hood, the
:class:`~airflow.providers.postgres.operators.postgres.PostgresOperator`
delegates its heavy lifting to the
:class:`~airflow.providers.postgres.hooks.postgres.PostgresHook`.
Common Database Operations with PostgresOperator
------------------------------------------------