From 8f1283c7be905b9778ee0ecb7a5cdcc0cc715c06 Mon Sep 17 00:00:00 2001 From: Polina Bungina <27892524+hughcapet@users.noreply.github.com> Date: Thu, 30 Nov 2023 11:24:44 +0100 Subject: [PATCH] Add pg_partman to shared_preload_libraries for pg16 (#952) --- postgres-appliance/scripts/spilo_commons.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/postgres-appliance/scripts/spilo_commons.py b/postgres-appliance/scripts/spilo_commons.py index c9eb2e3a7..e1f560f1a 100644 --- a/postgres-appliance/scripts/spilo_commons.py +++ b/postgres-appliance/scripts/spilo_commons.py @@ -15,7 +15,7 @@ 'timescaledb': (9.6, 15, True, True), 'pg_cron': (9.5, 16, True, False), 'pg_stat_kcache': (9.4, 16, True, False), - 'pg_partman': (9.4, 15, False, True) + 'pg_partman': (9.4, 16, False, True) } if os.environ.get('ENABLE_PG_MON') == 'true': extensions['pg_mon'] = (11, 16, True, False)