From 872bba712461c764919d9b3a53041dc16a59b184 Mon Sep 17 00:00:00 2001 From: melkij Date: Thu, 30 Apr 2026 23:03:26 +0300 Subject: [PATCH 1/3] fix compiler warning MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit pg_repack.c: In function ‘check_tablespace’: pg_repack.c:447:1: warning: old-style function definition [-Wold-style-definition] postgresql 19 uses more strict compiler option --- bin/pg_repack.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/pg_repack.c b/bin/pg_repack.c index 1c930d1..9ff415f 100644 --- a/bin/pg_repack.c +++ b/bin/pg_repack.c @@ -444,7 +444,7 @@ is_superuser(void) * Raise an exception on error. */ void -check_tablespace() +check_tablespace(void) { PGresult *res = NULL; const char *params[1]; From e14f75bbd8885610b514ebac70327960af19cbd8 Mon Sep 17 00:00:00 2001 From: melkij Date: Thu, 30 Apr 2026 23:04:58 +0300 Subject: [PATCH 2/3] add postgresql 19 to test matrix No significant code changes are required. --- .github/workflows/regression.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/regression.yml b/.github/workflows/regression.yml index 3d1be41..816d77c 100644 --- a/.github/workflows/regression.yml +++ b/.github/workflows/regression.yml @@ -7,6 +7,7 @@ jobs: fail-fast: false matrix: pg: + - 19 - 18 - 17 - 16 From 2a59839f6da73220057fa64591a9073167a55fea Mon Sep 17 00:00:00 2001 From: melkij Date: Fri, 1 May 2026 15:11:36 +0300 Subject: [PATCH 3/3] update supported version number in docs --- doc/pg_repack.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/pg_repack.rst b/doc/pg_repack.rst index 398f782..f63699d 100644 --- a/doc/pg_repack.rst +++ b/doc/pg_repack.rst @@ -41,7 +41,7 @@ Requirements ------------ PostgreSQL versions - PostgreSQL 9.5, 9.6, 10, 11, 12, 13, 14, 15, 16, 17, 18. + PostgreSQL 9.5, 9.6, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19. PostgreSQL 9.4 and before it are not supported.