summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHeikki Linnakangas <heikki.linnakangas@iki.fi>2025-11-10 19:12:08 +0200
committerHeikki Linnakangas <heikki.linnakangas@iki.fi>2025-11-10 19:12:43 +0200
commite510378358540703a13b77090a0021853bae0745 (patch)
tree8091ddc5757f967c0b0db89e1167b81a0b56871c
parent5e4fcbe531c668b4112beedde97aac79724074c5 (diff)
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 <tgl@sss.pgh.pa.us> Discussion: https://www.postgresql.org/message-id/1874404.1762787779@sss.pgh.pa.us
-rw-r--r--src/include/catalog/pg_control.h2
1 files changed, 1 insertions, 1 deletions
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