From 7f1a3953c980fb03511b5758bb1e54d092ae05bb Mon Sep 17 00:00:00 2001 From: Jelte Fennema-Nio Date: Tue, 2 Jan 2024 11:19:54 +0100 Subject: [PATCH v8 06/13] Bump protocol version to 3.1 In preparation of new additions to the protocol in a follow up commit this bumps the minor protocol version number. --- src/include/libpq/pqcomm.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/include/libpq/pqcomm.h b/src/include/libpq/pqcomm.h index 9703c6e9a45..ac1ee47412c 100644 --- a/src/include/libpq/pqcomm.h +++ b/src/include/libpq/pqcomm.h @@ -91,11 +91,10 @@ is_unixsock_path(const char *path) /* * The earliest and latest frontend/backend protocol version supported. - * (Only protocol version 3 is currently supported) */ #define PG_PROTOCOL_EARLIEST PG_PROTOCOL(3,0) -#define PG_PROTOCOL_LATEST PG_PROTOCOL(3,0) +#define PG_PROTOCOL_LATEST PG_PROTOCOL(3,1) typedef uint32 ProtocolVersion; /* FE/BE protocol version number */ -- 2.34.1