pgsql: psql: Fix incorrect status code returned by \getresults - Mailing list pgsql-committers

From Michael Paquier
Subject pgsql: psql: Fix incorrect status code returned by \getresults
Date
Msg-id E1u6HQ7-000rgl-2F@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
psql: Fix incorrect status code returned by \getresults

When an invalid number of results is requested for \getresults, the
status code returned by exec_command_getresults() was PSQL_CMD_SKIP_LINE
and not PSQL_CMD_ERROR.

This led to incorrect behaviors, with ON_ERROR_STOP for example.

Reported-by: Noah Misch <noah@leadboat.com>
Discussion: https://postgr.es/m/20250415213450.1f.nmisch@google.com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/5ee7bd944ee812e988a7dee52613ee1c80c13579

Modified Files
--------------
src/bin/psql/command.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)


pgsql-committers by date:

Previous
From: Tom Lane
Date:
Subject: pgsql: Be more wary of corrupt data in pageinspect's heap_page_items().
Next
From: Michael Paquier
Date:
Subject: pgsql: psql: Improve descriptions of \\flush[request] in --help