diff options
Diffstat (limited to 'src/include/catalog/pg_control.h')
-rw-r--r-- | src/include/catalog/pg_control.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/include/catalog/pg_control.h b/src/include/catalog/pg_control.h index 3797f25b306..63e834a6ce4 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 1700 +#define PG_CONTROL_VERSION 1800 /* Nonce key length, see below */ #define MOCK_AUTH_NONCE_LEN 32 @@ -222,6 +222,12 @@ typedef struct ControlFileData uint32 data_checksum_version; /* + * True if the default signedness of char is "signed" on a platform where + * the cluster is initialized. + */ + bool default_char_signedness; + + /* * Random nonce, used in authentication requests that need to proceed * based on values that are cluster-unique, like a SASL exchange that * failed at an early stage. |