From 77f5f53d6ba49d5a0d0a94ad30843385bd6a47aa Mon Sep 17 00:00:00 2001 From: Polina Bungina Date: Mon, 27 Nov 2023 12:50:45 +0100 Subject: [PATCH] Remove amcheck_next installation, removal --- postgres-appliance/major_upgrade/pg_upgrade.py | 2 +- postgres-appliance/tests/schema.sql | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/postgres-appliance/major_upgrade/pg_upgrade.py b/postgres-appliance/major_upgrade/pg_upgrade.py index dee894b99..69253ff3a 100644 --- a/postgres-appliance/major_upgrade/pg_upgrade.py +++ b/postgres-appliance/major_upgrade/pg_upgrade.py @@ -11,7 +11,7 @@ class _PostgresqlUpgrade(Postgresql): - _INCOMPATIBLE_EXTENSIONS = ('amcheck_next', 'pg_repack',) + _INCOMPATIBLE_EXTENSIONS = ('pg_repack',) def adjust_shared_preload_libraries(self, version): from spilo_commons import adjust_extensions diff --git a/postgres-appliance/tests/schema.sql b/postgres-appliance/tests/schema.sql index b4ea8224f..d646a8897 100644 --- a/postgres-appliance/tests/schema.sql +++ b/postgres-appliance/tests/schema.sql @@ -1,5 +1,4 @@ -CREATE EXTENSION pg_repack; -CREATE EXTENSION amcheck_next; /* the upgrade script must delete it before running pg_upgrade --check! */ +CREATE EXTENSION pg_repack; /* the upgrade script must delete it before running pg_upgrade --check! */ CREATE DATABASE test_db; \c test_db