From 2395962866a36c23812d0be296d39d1735ca33d0 Mon Sep 17 00:00:00 2001 From: David Christensen Date: Tue, 10 Oct 2023 11:10:06 -0400 Subject: [PATCH] docs: update for more modern PostgreSQL version --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 1f0b495..b52522c 100644 --- a/README.md +++ b/README.md @@ -337,10 +337,10 @@ Clone PostgreSQL repository: $> git clone https://github.com/postgres/postgres.git ``` -Checkout REL9_5_STABLE (for example) branch: +Checkout REL_15_STABLE (for example) branch: ```bash -$> git checkout REL9_5_STABLE +$> git checkout REL_15_STABLE ``` Make PostgreSQL: @@ -733,14 +733,14 @@ OR set_session_auth(): ``` # psql -U postgres test -psql (13.3) +psql (15.4) Type "help" for help. test=# grant EXECUTE on FUNCTION set_session_auth(text) to dbclient; \q # psql -U dbclient test -psql (13.3) +psql (15.4) Type "help" for help. test=> select session_user, current_user, user, current_role;