This is an automated email from the ASF dual-hosted git repository.
potiuk 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 b2c31ee3fa postgres_operator_howto_guide.rst (#23789)
b2c31ee3fa is described below
commit b2c31ee3fab437bfbe543c7fe742b9e6c38ffb2a
Author: Ryan Hatter <[email protected]>
AuthorDate: Thu May 19 12:16:24 2022 -0500
postgres_operator_howto_guide.rst (#23789)
Saying "**the** PostgreSQL database" confused me. I thought it was implying
that a user could/should connect to the airflow metadata db
---
.../operators/postgres_operator_howto_guide.rst | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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 a0cd561de6..2a5ee5a333 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
@@ -26,7 +26,7 @@ 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.
+The purpose of Postgres Operator is to define tasks involving interactions
with a PostgreSQL database.
In ``Airflow-2.0``, the ``PostgresOperator`` class resides at
``airflow.providers.postgres.operators.postgres``.
Under the hood, the
:class:`~airflow.providers.postgres.operators.postgres.PostgresOperator`
delegates its heavy lifting to the
:class:`~airflow.providers.postgres.hooks.postgres.PostgresHook`.