Skip to content

Commit

Permalink
add print about PostgreSQL 15 or higher GRANT #9717
Browse files Browse the repository at this point in the history
  • Loading branch information
pdurbin authored Sep 7, 2023
1 parent ce7aaf4 commit 8bb38c4
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions scripts/installer/install.py
Original file line number Diff line number Diff line change
Expand Up @@ -423,6 +423,7 @@

if int(pg_major_version) >= 15:
conn_cmd = "GRANT ALL ON SCHEMA public TO "+pgUser+";"
print("PostgreSQL 15 or higher detected. Running " + conn_cmd)
try:
cur.execute(conn_cmd)
except:
Expand Down

0 comments on commit 8bb38c4

Please sign in to comment.