psql: Fix incorrect status code returned by \getresults
authorMichael Paquier
Sat, 19 Apr 2025 23:15:39 +0000 (08:15 +0900)
committerMichael Paquier
Sat, 19 Apr 2025 23:15:39 +0000 (08:15 +0900)
commit5ee7bd944ee812e988a7dee52613ee1c80c13579
tree2059b859f3aba2d492b2f720051940a46bfceb54
parentd05996340d7a4bc32c464be085727ccddf28376b
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
Discussion: https://postgr.es/m/20250415213450[email protected]
src/bin/psql/command.c