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 d6d84a95db fix nit in pg set-up doc (#39628)
d6d84a95db is described below
commit d6d84a95db7a5c3a10198e580c94c4b26d69383d
Author: Eric Gao <[email protected]>
AuthorDate: Wed May 15 19:11:59 2024 +0800
fix nit in pg set-up doc (#39628)
---
docs/apache-airflow/howto/set-up-database.rst | 1 -
1 file changed, 1 deletion(-)
diff --git a/docs/apache-airflow/howto/set-up-database.rst
b/docs/apache-airflow/howto/set-up-database.rst
index b8139a3d21..14249f9dd4 100644
--- a/docs/apache-airflow/howto/set-up-database.rst
+++ b/docs/apache-airflow/howto/set-up-database.rst
@@ -167,7 +167,6 @@ In the example below, a database ``airflow_db`` and user
with username ``airflo
CREATE USER airflow_user WITH PASSWORD 'airflow_pass';
GRANT ALL PRIVILEGES ON DATABASE airflow_db TO airflow_user;
-- PostgreSQL 15 requires additional privileges:
- USE airflow_db;
GRANT ALL ON SCHEMA public TO airflow_user;
.. note::