Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
EXTENSIONS_TO_DISABLE=(
"pg_graphql"
"pg_stat_monitor"
"pg_backtrace"
)

PG14_EXTENSIONS_TO_DISABLE=(
Expand Down Expand Up @@ -217,6 +218,7 @@ function initiate_upgrade {
SHARED_PRELOAD_LIBRARIES=$(echo "$SHARED_PRELOAD_LIBRARIES" | sed "s/pg_net//" | xargs)
SHARED_PRELOAD_LIBRARIES=$(echo "$SHARED_PRELOAD_LIBRARIES" | sed "s/check_role_membership//" | xargs)
SHARED_PRELOAD_LIBRARIES=$(echo "$SHARED_PRELOAD_LIBRARIES" | sed "s/safeupdate//" | xargs)
SHARED_PRELOAD_LIBRARIES=$(echo "$SHARED_PRELOAD_LIBRARIES" | sed "s/pg_backtrace//" | xargs)

# Exclude empty-string entries, as well as leading/trailing commas and spaces resulting from the above lib exclusions
# i.e. " , pg_stat_statements, , pgsodium, " -> "pg_stat_statements, pgsodium"
Expand Down
4 changes: 2 additions & 2 deletions ansible/vars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ postgres_major:

# Full version strings for each major version
postgres_release:
postgresorioledb-17: "17.0.1.041-orioledb"
postgres15: "15.8.1.047"
postgresorioledb-17: "17.0.1.042-orioledb-bt-rc-1"
postgres15: "15.8.1.048-bt-rc-1"

# Non Postgres Extensions
pgbouncer_release: "1.19.0"
Expand Down
1 change: 0 additions & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,6 @@
./nix/ext/postgis.nix
./nix/ext/pgrouting.nix
./nix/ext/pgtap.nix
./nix/ext/pg_backtrace.nix
./nix/ext/pg_cron.nix
./nix/ext/pgsql-http.nix
./nix/ext/pg_plan_filter.nix
Expand Down
6 changes: 2 additions & 4 deletions nix/tests/expected/z_15_ext_interface.out

Large diffs are not rendered by default.

6 changes: 2 additions & 4 deletions nix/tests/expected/z_17_ext_interface.out

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion nix/tests/postgresql.conf.in
Original file line number Diff line number Diff line change
Expand Up @@ -718,7 +718,7 @@ default_text_search_config = 'pg_catalog.english'

#local_preload_libraries = ''
#session_preload_libraries = ''
shared_preload_libraries = 'pg_stat_statements, pgaudit, plpgsql, plpgsql_check, pg_cron, pg_net, pgsodium, timescaledb, auto_explain, pg_tle, plan_filter, pg_backtrace' # (change requires restart)
shared_preload_libraries = 'pg_stat_statements, pgaudit, plpgsql, plpgsql_check, pg_cron, pg_net, pgsodium, timescaledb, auto_explain, pg_tle, plan_filter' # (change requires restart)
jit_provider = 'llvmjit' # JIT library to use


Expand Down
1 change: 0 additions & 1 deletion nix/tests/prime.sql
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ create extension if not exists lo;
create extension if not exists ltree;
create extension if not exists moddatetime;
create extension if not exists pageinspect;
create extension if not exists pg_backtrace;
create extension if not exists pg_buffercache;

/*
Expand Down
Loading