From: Nathan Bossart Date: Fri, 9 Aug 2024 15:52:37 +0000 (-0500) Subject: doc: Fix name of CRC algorithm in "Reliability" section. X-Git-Tag: REL_18_BETA1~2172 X-Git-Url: http://git.postgresql.org/gitweb/?a=commitdiff_plain;h=8c3548613d7e2a7c010360e6f55fa6db849eeef9;p=postgresql.git doc: Fix name of CRC algorithm in "Reliability" section. This section claims we use CRC-32 for WAL records and two-phase state files, but we've actually used CRC-32C since v9.5 (commit 5028f22f6e). Fix that. Reviewed-by: Robert Haas Discussion: https://postgr.es/m/ZrUFpLP-w2zTAHqq%40nathan Backpatch-through: 12 --- diff --git a/doc/src/sgml/wal.sgml b/doc/src/sgml/wal.sgml index 05e2a8f8be9..d5df65bc693 100644 --- a/doc/src/sgml/wal.sgml +++ b/doc/src/sgml/wal.sgml @@ -186,7 +186,7 @@ - Each individual record in a WAL file is protected by a CRC-32 (32-bit) check + Each individual record in a WAL file is protected by a CRC-32C (32-bit) check that allows us to tell if record contents are correct. The CRC value is set when we write each WAL record and checked during crash recovery, archive recovery and replication. @@ -212,7 +212,7 @@ - Individual state files in pg_twophase are protected by CRC-32. + Individual state files in pg_twophase are protected by CRC-32C.