Skip to content

Commit

Permalink
Remove amcheck_next installation, removal
Browse files Browse the repository at this point in the history
  • Loading branch information
hughcapet committed Nov 27, 2023
1 parent e75167e commit 77f5f53
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion postgres-appliance/major_upgrade/pg_upgrade.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 1 addition & 2 deletions postgres-appliance/tests/schema.sql
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 77f5f53

Please sign in to comment.