diff options
| author | Fujii Masao | 2026-09-16 07:54:56 +0000 |
|---|---|---|
| committer | Fujii Masao | 2026-09-16 07:55:35 +0000 |
| commit | 5a8cacfe5cb15d97d7f6aad022bde908b3ae8890 (patch) | |
| tree | 8ed082e4c5882ca8d5a09329c41ee1675d3ca649 | |
| parent | 0cabab44f12f4169e52a0ba61d810dd2801cd517 (diff) | |
doc: Fix primary status update WAL position description
Commit 5f3a49abf7f changed the primary status update message to report the
end of the last inserted WAL record instead of the WAL write position.
However, the protocol documentation still described the WAL position field as
the latest WAL write position, which no longer matches the message sent by
walsender.
Update the description of the WAL position field to indicate the end of the
last inserted WAL record, matching the implementation.
Author: Fujii Masao <masao.fujii@gmail.com>
Reviewed-by: Ayush Tiwari <ayushtiwari.slg01@gmail.com>
Discussion: https://postgr.es/m/CAHGQGwFn2QfpHDR6cWxd98tqNb5vyguEis8rtqnqidFR36p4QQ@mail.gmail.com
Backpatch-through: 19
| -rw-r--r-- | doc/src/sgml/protocol.sgml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/sgml/protocol.sgml b/doc/src/sgml/protocol.sgml index 89ac680efd5..8ced69f283b 100644 --- a/doc/src/sgml/protocol.sgml +++ b/doc/src/sgml/protocol.sgml @@ -2787,7 +2787,7 @@ psql "dbname=postgres replication=database" -c "IDENTIFY_SYSTEM;" <term>Int64</term> <listitem> <para> - The latest WAL write position on the server. + The end of the last inserted WAL record on the server. </para> </listitem> </varlistentry> |
