pgsql: psql: Add ignore_slash_options in bind's inactive branch - Mailing list pgsql-committers

From Michael Paquier
Subject pgsql: psql: Add ignore_slash_options in bind's inactive branch
Date
Msg-id E1rQhHw-0026Ye-BF@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
psql: Add ignore_slash_options in bind's inactive branch

All commands accepting arguments, handling them with OT_NORMAL, OT_SQLID
or OT_SQLIDHACK, should call ignore_slash_options() in inactive branch
to scan and discard extra arguments.  All the backslash commands that
handle arguments do so, except \bind.

This commit adds the missing ignore_slash_options to \bind's inactive
branch.  This inconsistency is a logic bug, however the behavior happens
to be unchanged as any extra arguments are discarded later in
HandleSlashCmds(), so no backpatch is done.

While on it, this adds \bind to the list of backslash commands where
inactive \if branches are checked in the tests for psql.

Reported-by: Jelte Fennema-Nio
Author: Anthonin Bonnefoy
Discussion: https://postgr.es/m/CAGECzQR1+udGKz+FbHiCQ7CWDiF1fCGi2xYuvQUODdMAfJbaLA@mail.gmail.com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/04c0897d3bcafe4ca61967d5ab1b5669f3cbe80b

Modified Files
--------------
src/bin/psql/command.c             | 2 ++
src/test/regress/expected/psql.out | 1 +
src/test/regress/sql/psql.sql      | 1 +
3 files changed, 4 insertions(+)


pgsql-committers by date:

Previous
From: Michael Paquier
Date:
Subject: pgsql: Fix incorrect placeholder in walreceiver.c
Next
From: John Naylor
Date:
Subject: pgsql: Add inline incremental hash functions for in-memory use