summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHeikki Linnakangas2025-11-10 17:12:08 +0000
committerHeikki Linnakangas2025-11-10 17:12:43 +0000
commite510378358540703a13b77090a0021853bae0745 (patch)
tree8091ddc5757f967c0b0db89e1167b81a0b56871c
parent5e4fcbe531c668b4112beedde97aac79724074c5 (diff)
Bump PG_CONTROL_VERSION for commit 3e0ae46d90HEADmaster
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 <[email protected]> Discussion: https://www.postgresql.org/message-id/[email protected]
-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