From: Magnus Hagander Date: Mon, 13 Oct 2025 13:31:25 +0000 (+0200) Subject: docs: Fix protocol version 3.2 message format of CancelRequest X-Git-Url: http://git.postgresql.org/gitweb/?a=commitdiff_plain;h=d3ba50db48e66be8804b9edf093b0f921d625425;p=postgresql.git docs: Fix protocol version 3.2 message format of CancelRequest Since protocol version 3.2 the CancelRequest does not have a fixed size length anymore. The protocol docs still listed the length field to be a constant number though. This fixes that. Author: Jelte Fennema-Nio Reported-by: Dmitry Igrishin Backpatch-through: 18 --- diff --git a/doc/src/sgml/protocol.sgml b/doc/src/sgml/protocol.sgml index b5395604fb8..9d755232873 100644 --- a/doc/src/sgml/protocol.sgml +++ b/doc/src/sgml/protocol.sgml @@ -4327,7 +4327,7 @@ psql "dbname=postgres replication=database" -c "IDENTIFY_SYSTEM;" - Int32(16) + Int32 Length of message contents in bytes, including self.