Skip to content

Commit 07efc20

Browse files
committed
chore: handle in upgrade scripts
1 parent 68361b3 commit 07efc20

File tree

1 file changed

+2
-0
lines changed
  • ansible/files/admin_api_scripts/pg_upgrade_scripts

1 file changed

+2
-0
lines changed

ansible/files/admin_api_scripts/pg_upgrade_scripts/initiate.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
EXTENSIONS_TO_DISABLE=(
1313
"pg_graphql"
1414
"pg_stat_monitor"
15+
"pg_backtrace"
1516
)
1617

1718
PG14_EXTENSIONS_TO_DISABLE=(
@@ -217,6 +218,7 @@ function initiate_upgrade {
217218
SHARED_PRELOAD_LIBRARIES=$(echo "$SHARED_PRELOAD_LIBRARIES" | sed "s/pg_net//" | xargs)
218219
SHARED_PRELOAD_LIBRARIES=$(echo "$SHARED_PRELOAD_LIBRARIES" | sed "s/check_role_membership//" | xargs)
219220
SHARED_PRELOAD_LIBRARIES=$(echo "$SHARED_PRELOAD_LIBRARIES" | sed "s/safeupdate//" | xargs)
221+
SHARED_PRELOAD_LIBRARIES=$(echo "$SHARED_PRELOAD_LIBRARIES" | sed "s/pg_backtrace//" | xargs)
220222

221223
# Exclude empty-string entries, as well as leading/trailing commas and spaces resulting from the above lib exclusions
222224
# i.e. " , pg_stat_statements, , pgsodium, " -> "pg_stat_statements, pgsodium"

0 commit comments

Comments
 (0)