Skip to content

Commit

Permalink
Use correct name for PostgreSQL (apache#11869)
Browse files Browse the repository at this point in the history
`PostgresSQL` -> `PostgreSQL`
  • Loading branch information
kaxil authored Oct 27, 2020
1 parent 07a3c6f commit 0f41ba9
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/howto/connection/postgres.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
PostgresSQL Connection
PostgreSQL Connection
======================
The Postgres connection type provides connection to a Postgres database.

Expand Down
2 changes: 1 addition & 1 deletion docs/howto/operator/google/cloud/cloud_sql.rst
Original file line number Diff line number Diff line change
Expand Up @@ -568,5 +568,5 @@ Reference
For further information, look at:

* `Google Cloud API - MySQL Documentation <https://cloud.google.com/sql/docs/mysql/admin-api/v1beta4/>`__
* `Google Cloud API - PostgresSQL Documentation <https://cloud.google.com/sql/docs/postgres/admin-api/v1beta4/>`__
* `Google Cloud API - PostgreSQL Documentation <https://cloud.google.com/sql/docs/postgres/admin-api/v1beta4/>`__
* `Product Documentation <https://cloud.google.com/sql/docs/>`__
6 changes: 3 additions & 3 deletions docs/operators-and-hooks-ref.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1065,7 +1065,7 @@ These integrations allow you to copy data from/to Google Cloud.
- :doc:`How to use <howto/operator/google/transfer/mysql_to_gcs>`
- :mod:`airflow.providers.google.cloud.transfers.mysql_to_gcs`

* - `PostgresSQL <https://www.postgresql.org/>`__
* - `PostgreSQL <https://www.postgresql.org/>`__
- `Google Cloud Storage (GCS) <https://cloud.google.com/gcs/>`__
-
- :mod:`airflow.providers.google.cloud.transfers.postgres_to_gcs`
Expand Down Expand Up @@ -1502,7 +1502,7 @@ These integrations allow you to perform various operations using various softwar
- :mod:`airflow.providers.papermill.operators.papermill`
-

* - `PostgresSQL <https://www.postgresql.org/>`__
* - `PostgreSQL <https://www.postgresql.org/>`__
-
- :mod:`airflow.providers.postgres.hooks.postgres`
- :mod:`airflow.providers.postgres.operators.postgres`
Expand Down Expand Up @@ -1598,7 +1598,7 @@ These integrations allow you to copy data.
-
- :mod:`airflow.providers.oracle.transfers.oracle_to_oracle`

* - `PostgresSQL <https://www.postgresql.org/>`__
* - `PostgreSQL <https://www.postgresql.org/>`__
- `Google Cloud Storage (GCS) <https://cloud.google.com/gcs/>`__
-
- :mod:`airflow.providers.google.cloud.transfers.postgres_to_gcs`
Expand Down
2 changes: 1 addition & 1 deletion scripts/in_container/check_environment.sh
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ function check_db_backend {
MAX_CHECK=${1:=1}

if [[ ${BACKEND} == "postgres" ]]; then
check_service "PostgresSQL" "nc -zvv postgres 5432" "${MAX_CHECK}"
check_service "PostgreSQL" "nc -zvv postgres 5432" "${MAX_CHECK}"
elif [[ ${BACKEND} == "mysql" ]]; then
check_service "MySQL" "nc -zvv mysql 3306" "${MAX_CHECK}"
elif [[ ${BACKEND} == "sqlite" ]]; then
Expand Down

0 comments on commit 0f41ba9

Please sign in to comment.