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 1s6g4Q-001747-CB for pgsql-hackers@arkaria.postgresql.org; Tue, 14 May 2024 00:31:07 +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 1s6g4P-007DAU-Kz for pgsql-hackers@arkaria.postgresql.org; Tue, 14 May 2024 00:31:05 +0000 Received: from magus.postgresql.org ([2a02:c0:301:0:ffff::29]) by malur.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1s6g4P-007DAM-91 for pgsql-hackers@lists.postgresql.org; Tue, 14 May 2024 00:31:05 +0000 Received: from momjian.us ([72.94.173.45]) by magus.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1s6g4L-0006gq-LS for pgsql-hackers@postgresql.org; Tue, 14 May 2024 00:31:04 +0000 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=momjian.us; s=2024011501; h=In-Reply-To:Content-Type:MIME-Version:References:Message-ID: Subject:Cc:To:From:Date:Sender:Reply-To:Content-Transfer-Encoding:Content-ID: Content-Description; bh=GmCsW1tM7BGoLmEW0iQECI4SFFh1OdsArhQHyUxk/xw=; b=k6Dl2 CVbr31qSSCWOqYFPMalIMEdNVbgRlVn8Xl2zSbLxRF9IRDuXltb2nTr6cJnx3w2Em+JsYl+NgBPaE avMMI8GAMB0WkKUaGwiR7SJ2fw5Fs6seuoHcJyLdljqr3B39R1njDfLqtg1bygEjzGLhPOUCU0tOw IfJ9vBh7Jxb4D21oDxxlRF1VtvkiTVmBjF/o8TCuk3f0v5cazZIJePG8AbhjwE7r4HcCvtk38M5Pa Aida59vpEOO3y6yLvAD+J5QU05TTusWV++DA66QoytFo4vs3Et6RzFs0H6EO81iYzql8RZbx8ZjyE Zhn4bJKcNkeqRFdeOjsgqQD/gupxA==; Received: from bruce by momjian.us with local (Exim 4.96) (envelope-from ) id 1s6g4J-004PsC-2P; Mon, 13 May 2024 20:30:59 -0400 Date: Mon, 13 May 2024 20:30:59 -0400 From: Bruce Momjian To: Tom Lane Cc: Jelte Fennema-Nio , PostgreSQL-development Subject: Re: First draft of PG 17 release notes Message-ID: References: <1641606.1715376693@sss.pgh.pa.us> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="qgxexa9oscDUhDZu" Content-Disposition: inline In-Reply-To: <1641606.1715376693@sss.pgh.pa.us> List-Id: List-Help: List-Subscribe: List-Post: List-Owner: List-Archive: Archived-At: Precedence: bulk --qgxexa9oscDUhDZu Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Fri, May 10, 2024 at 05:31:33PM -0400, Tom Lane wrote: > Bruce Momjian writes: > > On Fri, May 10, 2024 at 06:50:54PM +0200, Jelte Fennema-Nio wrote: > >> There are two commits that I think would benefit from being listed > >> (but maybe they are already listed and I somehow missed them, or they > >> are left out on purpose for some reason): > > > I looked at both of these. In both cases I didn't see why the user > > would need to know these changes were made: > > I agree that the buffering change is not likely interesting, but > the fact that you can now control-C out of a psql "\c" command > is user-visible. People might have internalized the fact that > it didn't work, or created complicated workarounds. Agreed, attached patch applied. -- Bruce Momjian https://momjian.us EDB https://enterprisedb.com Only you can decide what is important to you. --qgxexa9oscDUhDZu Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="master.diff" diff --git a/doc/src/sgml/release-17.sgml b/doc/src/sgml/release-17.sgml index 5a741ff16f1..9dd3954f3c2 100644 --- a/doc/src/sgml/release-17.sgml +++ b/doc/src/sgml/release-17.sgml @@ -1980,6 +1980,17 @@ The parameter is "min_rows". + + + + +Allow psql connections to be canceled with control-C (Tristan Partin) + + +