Received: from malur.postgresql.org ([217.196.149.56]) by arkaria.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1viKsB-003R6J-1y for pgsql-hackers@arkaria.postgresql.org; Tue, 20 Jan 2026 23:10:56 +0000 Received: from localhost ([127.0.0.1] helo=malur.postgresql.org) by malur.postgresql.org with esmtp (Exim 4.96) (envelope-from ) id 1viKs9-003wMm-23 for pgsql-hackers@arkaria.postgresql.org; Tue, 20 Jan 2026 23:10:53 +0000 Received: from makus.postgresql.org ([2001:4800:3e1:1::229]) by malur.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1viKs9-003wMa-0j for pgsql-hackers@lists.postgresql.org; Tue, 20 Jan 2026 23:10:53 +0000 Received: from sss.pgh.pa.us ([68.162.161.243]) by makus.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1viKs7-001UvW-06 for pgsql-hackers@postgresql.org; Tue, 20 Jan 2026 23:10:52 +0000 Received: from sss1.sss.pgh.pa.us (localhost [127.0.0.1]) by sss.pgh.pa.us (8.15.2/8.15.2) with ESMTP id 60KNAnx71935053; Tue, 20 Jan 2026 18:10:49 -0500 From: Tom Lane To: Jacob Champion cc: PostgreSQL Hackers Subject: Re: [PATCH] Reserve protocol 3.1 explicitly in pqcomm.h In-reply-to: References: Comments: In-reply-to Jacob Champion message dated "Tue, 20 Jan 2026 15:04:44 -0800" MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-ID: <1935051.1768950649.1@sss.pgh.pa.us> Date: Tue, 20 Jan 2026 18:10:49 -0500 Message-ID: <1935052.1768950649@sss.pgh.pa.us> List-Id: List-Help: List-Subscribe: List-Post: List-Owner: List-Archive: Archived-At: Precedence: bulk Jacob Champion writes: > This is a tiny followup to https://postgr.es/c/0664aa4ff8 that > enshrines the unused 3.1 protocol version as PG_PROTOCOL_RSRV31. The > patch comes from [1]; I just wanted to give people the opportunity to > bikeshed the name (or object to the move?) before it becomes part of a > public header. +1 for concept, but I agree the name needs bikeshedding. "RSRV" is unreadable, and people might well mentally expand it to something involving "server", leading to confusion. How about "PG_PROTOCOL_RESERVED_31" or "PG_PROTOCOL_UNUSED_31"? regards, tom lane