From e510378358540703a13b77090a0021853bae0745 Mon Sep 17 00:00:00 2001 From: Heikki Linnakangas Date: Mon, 10 Nov 2025 19:12:08 +0200 Subject: [PATCH] Bump PG_CONTROL_VERSION for commit 3e0ae46d90 Commit 3e0ae46d90 added a field to ControlFileData and bumped CATALOG_VERSION_NO, but CATALOG_VERSION_NO is not the right version number for ControlFileData changes. Bumping either one will force an initdb, but PG_CONTROL_VERSION is more accurate. Bump PG_CONTROL_VERSION now. Reported-by: Tom Lane Discussion: https://www.postgresql.org/message-id/1874404.1762787779@sss.pgh.pa.us --- src/include/catalog/pg_control.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/include/catalog/pg_control.h b/src/include/catalog/pg_control.h index 1ac0d5126fc..293e9e03f59 100644 --- a/src/include/catalog/pg_control.h +++ b/src/include/catalog/pg_control.h @@ -22,7 +22,7 @@ /* Version identifier for this pg_control format */ -#define PG_CONTROL_VERSION 1800 +#define PG_CONTROL_VERSION 1900 /* Nonce key length, see below */ #define MOCK_AUTH_NONCE_LEN 32