Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: update for more modern PostgreSQL version #79

Merged
merged 1 commit into from
Oct 10, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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;
Expand Down