1
0
mirror of https://github.com/postgres/postgres.git synced 2025-04-22 23:02:54 +03:00

Add default_char_signedness field to ControlFileData.

The signedness of the 'char' type in C is
implementation-dependent. For instance, 'signed char' is used by
default on x86 CPUs, while 'unsigned char' is used on aarch
CPUs. Previously, we accidentally let C implementation signedness
affect persistent data. This led to inconsistent results when
comparing char data across different platforms.

This commit introduces a new 'default_char_signedness' field in
ControlFileData to store the signedness of the 'char' type. While this
change does not encourage the use of 'char' without explicitly
specifying its signedness, this field can be used as a hint to ensure
consistent behavior for pre-v18 data files that store data sorted by
the 'char' type on disk (e.g., GIN and GiST indexes), especially in
cross-platform replication scenarios.

Newly created database clusters unconditionally set the default char
signedness to true. pg_upgrade (with an upcoming commit) changes this
flag for clusters if the source database cluster has
signedness=false. As a result, signedness=false setting will become
rare over time. If we had known about the problem during the last
development cycle that forced initdb (v8.3), we would have made all
clusters signed or all clusters unsigned. Making pg_upgrade the only
source of signedness=false will cause the population of database
clusters to converge toward that retrospective ideal.

Bump catalog version (for the catalog changes) and PG_CONTROL_VERSION
(for the additions in ControlFileData).

Reviewed-by: Noah Misch <noah@leadboat.com>
Discussion: https://postgr.es/m/CB11ADBC-0C3F-4FE0-A678-666EE80CBB07%40amazon.com
This commit is contained in:
Masahiko Sawada 2025-02-21 10:12:08 -08:00
parent 901a1cf8b4
commit 44fe30fdab
8 changed files with 64 additions and 7 deletions

View File

@ -27991,6 +27991,11 @@ acl | {postgres=arwdDxtm/postgres,foo=r/postgres}
<entry><type>integer</type></entry>
</row>
<row>
<entry><structfield>default_char_signedness</structfield></entry>
<entry><type>boolean</type></entry>
</row>
</tbody>
</tgroup>
</table>

View File

@ -4284,6 +4284,33 @@ WriteControlFile(void)
ControlFile->float8ByVal = FLOAT8PASSBYVAL;
/*
* Initialize the default 'char' signedness.
*
* The signedness of the char type is implementation-defined. For instance
* on x86 architecture CPUs, the char data type is typically treated as
* signed by default, whereas on aarch architecture CPUs, it is typically
* treated as unsigned by default. In v17 or earlier, we accidentally let
* C implementation signedness affect persistent data. This led to
* inconsistent results when comparing char data across different
* platforms.
*
* This flag can be used as a hint to ensure consistent behavior for
* pre-v18 data files that store data sorted by the 'char' type on disk,
* especially in cross-platform replication scenarios.
*
* Newly created database clusters unconditionally set the default char
* signedness to true. pg_upgrade changes this flag for clusters that were
* initialized on signedness=false platforms. As a result,
* signedness=false setting will become rare over time. If we had known
* about this problem during the last development cycle that forced initdb
* (v8.3), we would have made all clusters signed or all clusters
* unsigned. Making pg_upgrade the only source of signedness=false will
* cause the population of database clusters to converge toward that
* retrospective ideal.
*/
ControlFile->default_char_signedness = true;
/* Contents are protected with a CRC */
INIT_CRC32C(ControlFile->crc);
COMP_CRC32C(ControlFile->crc,
@ -4612,6 +4639,19 @@ DataChecksumsEnabled(void)
return (ControlFile->data_checksum_version > 0);
}
/*
* Return true if the cluster was initialized on a platform where the
* default signedness of char is "signed". This function exists for code
* that deals with pre-v18 data files that store data sorted by the 'char'
* type on disk (e.g., GIN and GiST indexes). See the comments in
* WriteControlFile() for details.
*/
bool
GetDefaultCharSignedness(void)
{
return ControlFile->default_char_signedness;
}
/*
* Returns a fake LSN for unlogged relations.
*

View File

@ -203,8 +203,8 @@ pg_control_recovery(PG_FUNCTION_ARGS)
Datum
pg_control_init(PG_FUNCTION_ARGS)
{
Datum values[11];
bool nulls[11];
Datum values[12];
bool nulls[12];
TupleDesc tupdesc;
HeapTuple htup;
ControlFileData *ControlFile;
@ -254,6 +254,9 @@ pg_control_init(PG_FUNCTION_ARGS)
values[10] = Int32GetDatum(ControlFile->data_checksum_version);
nulls[10] = false;
values[11] = BoolGetDatum(ControlFile->default_char_signedness);
nulls[11] = false;
htup = heap_form_tuple(tupdesc, values, nulls);
PG_RETURN_DATUM(HeapTupleGetDatum(htup));

View File

@ -336,6 +336,8 @@ main(int argc, char *argv[])
(ControlFile->float8ByVal ? _("by value") : _("by reference")));
printf(_("Data page checksum version: %u\n"),
ControlFile->data_checksum_version);
printf(_("Default char data signedness: %s\n"),
(ControlFile->default_char_signedness ? _("signed") : _("unsigned")));
printf(_("Mock authentication nonce: %s\n"),
mock_auth_nonce_str);
return 0;

View File

@ -231,6 +231,7 @@ extern XLogRecPtr GetXLogWriteRecPtr(void);
extern uint64 GetSystemIdentifier(void);
extern char *GetMockAuthenticationNonce(void);
extern bool DataChecksumsEnabled(void);
extern bool GetDefaultCharSignedness(void);
extern XLogRecPtr GetFakeLSNForUnloggedRel(void);
extern Size XLOGShmemSize(void);
extern void XLOGShmemInit(void);

View File

@ -57,6 +57,6 @@
*/
/* yyyymmddN */
#define CATALOG_VERSION_NO 202502211
#define CATALOG_VERSION_NO 202502212
#endif

View File

@ -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
@ -221,6 +221,12 @@ typedef struct ControlFileData
/* Are data pages protected by checksums? Zero if no checksum version */
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

View File

@ -12206,9 +12206,9 @@
descr => 'pg_controldata init state information as a function',
proname => 'pg_control_init', provolatile => 'v', prorettype => 'record',
proargtypes => '',
proallargtypes => '{int4,int4,int4,int4,int4,int4,int4,int4,int4,bool,int4}',
proargmodes => '{o,o,o,o,o,o,o,o,o,o,o}',
proargnames => '{max_data_alignment,database_block_size,blocks_per_segment,wal_block_size,bytes_per_wal_segment,max_identifier_length,max_index_columns,max_toast_chunk_size,large_object_chunk_size,float8_pass_by_value,data_page_checksum_version}',
proallargtypes => '{int4,int4,int4,int4,int4,int4,int4,int4,int4,bool,int4,bool}',
proargmodes => '{o,o,o,o,o,o,o,o,o,o,o,o}',
proargnames => '{max_data_alignment,database_block_size,blocks_per_segment,wal_block_size,bytes_per_wal_segment,max_identifier_length,max_index_columns,max_toast_chunk_size,large_object_chunk_size,float8_pass_by_value,data_page_checksum_version,default_char_signedness}',
prosrc => 'pg_control_init' },
# subscripting support for built-in types