Re: pipelining in psql, commit 41625ab

From: Noah Misch <noah(at)leadboat(dot)com>
To: Michael Paquier <michael(at)paquier(dot)xyz>
Cc: Anthonin Bonnefoy <anthonin(dot)bonnefoy(at)datadoghq(dot)com>, Jelte Fennema-Nio <postgres(at)jeltef(dot)nl>, PostgreSQL Hackers <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: pipelining in psql, commit 41625ab
Date: 2025-04-16 23:13:10
Message-ID: 20250416231310.d5.nmisch@google.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

On Wed, Apr 16, 2025 at 09:46:42AM -0700, Michael Paquier wrote:
> On Tue, Apr 15, 2025 at 02:34:50PM -0700, Noah Misch wrote:
> > On Fri, Feb 21, 2025 at 11:33:41AM +0900, Michael Paquier wrote:
> > commit 41625ab wrote:
> >> --- a/src/bin/psql/help.c
> >> +++ b/src/bin/psql/help.c
> >> @@ -167,15 +167,22 @@ slashUsage(unsigned short int pager)
> >> HELP0(" \\close STMT_NAME close an existing prepared statement\n");
> >> HELP0(" \\copyright show PostgreSQL usage and distribution terms\n");
> >> HELP0(" \\crosstabview [COLUMNS] execute query and display result in crosstab\n");
> >> + HELP0(" \\endpipeline exit pipeline mode\n");
> >> HELP0(" \\errverbose show most recent error message at maximum verbosity\n");
> >> + HELP0(" \\flush push unsent data to the server\n");
> >> + HELP0(" \\flushrequest send a flushrequest command\n");
> >
> > protocol.sgml calls it a "Flush command".
>
> For \flushrequest, how about "send a request to the server to flush
> its output buffer" and for \flush "flush output data to the server",
> mapping more with the libpq desctiptions?

Works for me.

In response to

Browse pgsql-hackers by date

  From Date Subject
Next Message Tom Lane 2025-04-16 23:28:44 Re: jsonapi: scary new warnings with LTO enabled
Previous Message Tom Lane 2025-04-16 23:12:52 Re: pg_dump: Fix dangling pointer in EndCompressorZstd()