diff options
| author | Magnus Hagander <magnus@hagander.net> | 2025-10-13 15:31:25 +0200 |
|---|---|---|
| committer | Magnus Hagander <magnus@hagander.net> | 2025-10-13 15:31:25 +0200 |
| commit | d3ba50db48e66be8804b9edf093b0f921d625425 (patch) | |
| tree | b313e24a420bb08fa76337c771812186eb67da9f | |
| parent | e062af861b453769ccf3940fe7920a87d7d31fe6 (diff) | |
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 <postgres@jeltef.nl>
Reported-by: Dmitry Igrishin <dmitigr@gmail.com>
Backpatch-through: 18
| -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 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;" <listitem> <variablelist> <varlistentry> - <term>Int32(16)</term> + <term>Int32</term> <listitem> <para> Length of message contents in bytes, including self. |
