diff options
author | Álvaro Herrera <alvherre@kurilemu.de> | 2025-08-04 14:03:01 +0200 |
---|---|---|
committer | Álvaro Herrera <alvherre@kurilemu.de> | 2025-08-04 14:03:01 +0200 |
commit | 07684443b1e03cd56a6a9dee589f5de91e3f9a34 (patch) | |
tree | aed04ffd460d43afcd5860d6363ac6e86b798c3d /doc/src | |
parent | 4614d53d4ef4d2249df45adedd85da8129feee94 (diff) |
Rename XLogData protocol message to WALData
This name is only used as documentation, and using this name is
consistent with its byte being a 'w'. Renaming it would also make the
use of a symbolic name based on the word "WAL" rather than the obsolete
"XLog" term more consistent, per future commits along the lines of
37c7a7eeb6d1, 4a68d5008869, f4b54e1ed985.
Discussion: https://postgr.es/m/aIECfYfevCUpenBT@nathan
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/protocol.sgml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/src/sgml/protocol.sgml b/doc/src/sgml/protocol.sgml index e56eac8fd0f..cc5c8dc574c 100644 --- a/doc/src/sgml/protocol.sgml +++ b/doc/src/sgml/protocol.sgml @@ -2555,8 +2555,8 @@ psql "dbname=postgres replication=database" -c "IDENTIFY_SYSTEM;" </para> <variablelist> - <varlistentry id="protocol-replication-xlogdata"> - <term>XLogData (B)</term> + <varlistentry id="protocol-replication-waldata"> + <term>WALData (B)</term> <listitem> <variablelist> <varlistentry> @@ -2604,11 +2604,11 @@ psql "dbname=postgres replication=database" -c "IDENTIFY_SYSTEM;" </para> <para> - A single WAL record is never split across two XLogData messages. + A single WAL record is never split across two WALData messages. When a WAL record crosses a WAL page boundary, and is therefore already split using continuation records, it can be split at the page boundary. In other words, the first main WAL record and its - continuation records can be sent in different XLogData messages. + continuation records can be sent in different WALData messages. </para> </listitem> </varlistentry> |