kaxil commented on code in PR #44067:
URL: https://github.com/apache/airflow/pull/44067#discussion_r1844723697
##########
docs/apache-airflow/howto/set-up-database.rst:
##########
@@ -167,6 +167,7 @@ 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:
+ \c airflow_db;
Review Comment:
psql is a cli tool to interact with Postgres where you can run and do more
things than query. The code block here is pure SQL statements.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]