On Fri, May 10, 2024 at 05:31:33PM -0400, Tom Lane wrote: > Bruce Momjian <br...@momjian.us> 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 <br...@momjian.us> https://momjian.us EDB https://enterprisedb.com Only you can decide what is important to you.
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". </para> </listitem> +<!-- +Author: Robert Haas <rh...@postgresql.org> +2024-04-02 [cafe10565] Allow SIGINT to cancel psql database reconnections. +--> + +<listitem> +<para> +Allow psql connections to be canceled with control-C (Tristan Partin) +</para> +</listitem> + <!-- Author: Tom Lane <t...@sss.pgh.pa.us> 2024-04-06 [90f517821] Re-implement psql's FETCH_COUNT feature atop libpq's chu