From: Tatsuo Ishii Date: Fri, 11 Jul 2025 01:22:09 +0000 (+0900) Subject: Doc: fix outdated protocol version. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a1973e54660619e0a0c76d1658188fcbe9e52a48;p=thirdparty%2Fpostgresql.git Doc: fix outdated protocol version. In the description of StartupMessage, the protocol version was left 3.0. This commit updates it to 3.2. Author: Tatsuo Ishii Reviewed-by: Jelte Fennema-Nio Discussion: https://postgr.es/m/20250626.155608.568829483879866256.ishii%40postgresql.org --- diff --git a/doc/src/sgml/protocol.sgml b/doc/src/sgml/protocol.sgml index 82fe3f93761..b2e55184632 100644 --- a/doc/src/sgml/protocol.sgml +++ b/doc/src/sgml/protocol.sgml @@ -6081,13 +6081,13 @@ psql "dbname=postgres replication=database" -c "IDENTIFY_SYSTEM;" - Int32(196608) + Int32(196610) The protocol version number. The most significant 16 bits are the major version number (3 for the protocol described here). The least significant 16 bits are the minor version number - (0 for the protocol described here). + (2 for the protocol described here).