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.94.2) (envelope-from ) id 1rwB0V-00HOaG-Al for pgsql-hackers@arkaria.postgresql.org; Mon, 15 Apr 2024 01:19:39 +0000 Received: from localhost ([127.0.0.1] helo=malur.postgresql.org) by malur.postgresql.org with esmtp (Exim 4.94.2) (envelope-from ) id 1rwB0U-009Kyy-1J for pgsql-hackers@arkaria.postgresql.org; Mon, 15 Apr 2024 01:19:38 +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.94.2) (envelope-from ) id 1rwB0T-009Kyp-OT for pgsql-hackers@lists.postgresql.org; Mon, 15 Apr 2024 01:19:37 +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.94.2) (envelope-from ) id 1rwB0R-002t0E-EA for pgsql-hackers@lists.postgresql.org; Mon, 15 Apr 2024 01:19:36 +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 43F1JYOG588802; Sun, 14 Apr 2024 21:19:34 -0400 From: Tom Lane To: Michael Paquier cc: David Rowley , PostgreSQL Developers Subject: Re: Stability of queryid in minor versions In-reply-to: References: Comments: In-reply-to Michael Paquier message dated "Mon, 15 Apr 2024 09:04:07 +0900" MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-ID: <588800.1713143974.1@sss.pgh.pa.us> Date: Sun, 14 Apr 2024 21:19:34 -0400 Message-ID: <588801.1713143974@sss.pgh.pa.us> List-Id: List-Help: List-Subscribe: List-Post: List-Owner: List-Archive: Archived-At: Precedence: bulk Michael Paquier writes: > On Mon, Apr 15, 2024 at 11:20:16AM +1200, David Rowley wrote: >> 1. We cannot change Node enums in minor versions >> 2. We're *unlikely* to add fields to Node types in minor versions, and >> if we did we'd likely be leaving them out of the jumble calc, plus it >> seems highly unlikely any new field we wedged into the padding would >> relate at all to the parsed query. > Since 16 these new fields would be added by default unless the node > attribute query_jumble_ignore is appended to it. They'd also be written/read by outfuncs/readfuncs, thereby breaking stored views/rules if the Node is one that can appear in a parsetree. So the bar to making such a change in a stable branch would be very high. regards, tom lane