From 9f1b5a21ba2b365229725412e6ad82c2bcf83fa7 Mon Sep 17 00:00:00 2001 From: Ivan Kovmir Date: Wed, 8 Oct 2025 11:48:43 +0200 Subject: [PATCH] Drop PostgreSQL 12 support 12 and below. --- pg_squeeze.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pg_squeeze.c b/pg_squeeze.c index 0eefba1..fff04bf 100644 --- a/pg_squeeze.c +++ b/pg_squeeze.c @@ -58,8 +58,8 @@ extern PGDLLIMPORT int wal_segment_size; extern PGDLLIMPORT bool FirstSnapshotSet; #endif -#if PG_VERSION_NUM < 120000 -#error "PostgreSQL version 12 or higher is required" +#if PG_VERSION_NUM < 130000 +#error "PostgreSQL version 13 or higher is required" #endif #ifdef PG_MODULE_MAGIC_EXT