File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
files/admin_api_scripts/pg_upgrade_scripts Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -430,8 +430,8 @@ $(cat /etc/postgresql/pg_hba.conf)" > /etc/postgresql/pg_hba.conf
430
430
# Add the setting if not found
431
431
echo " max_slot_wal_keep_size = -1" >> " $TMP_CONFIG "
432
432
433
- # Remove db_user_namespace if upgrading from PG15
434
- if [[ " $OLD_PGVERSION " =~ ^15. * && " $PGVERSION " =~ ^17.* ]]; then
433
+ # Remove db_user_namespace if upgrading from PG15 or lower
434
+ if [[ " ${ OLD_PGVERSION%% . * } " -le 15 && " $PGVERSION " =~ ^17.* ]]; then
435
435
sed -i ' /^db_user_namespace/d' " $TMP_CONFIG "
436
436
fi
437
437
Original file line number Diff line number Diff line change @@ -9,9 +9,9 @@ postgres_major:
9
9
10
10
# Full version strings for each major version
11
11
postgres_release :
12
- postgresorioledb-17 : " 17.0.1.085 -orioledb"
13
- postgres17 : " 17.4.1.035 "
14
- postgres15 : " 15.8.1.092 "
12
+ postgresorioledb-17 : " 17.0.1.086 -orioledb"
13
+ postgres17 : " 17.4.1.036 "
14
+ postgres15 : " 15.8.1.093 "
15
15
16
16
# Non Postgres Extensions
17
17
pgbouncer_release : " 1.19.0"
You can’t perform that action at this time.
0 commit comments