pgsql: psql: fix variable existence tab completion

From: Alexander Korotkov <akorotkov(at)postgresql(dot)org>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: psql: fix variable existence tab completion
Date: 2024-03-16 22:05:31
Message-ID: E1rlc9j-004AhP-GK@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

psql: fix variable existence tab completion

psql has the :{?name} syntax for testing for a psql variable existence. This
commit implements a tab completion for this syntax. Notably, in order to
implement this we have to remove '{' from WORD_BREAKS. It appears that
'{' here from the very beginning and it comes from the default value of
rl_basic_word_break_characters. And :{?name} is the only psql syntax using
the '{' sign. So, removing it from WORD_BREAKS shouldn't break anything.

Discussion: https://postgr.es/m/CAGRrpzZU48F2oV3d8eDLr%3D4TU9xFH5Jt9ED%2BqU1%2BX91gMH68Sw%40mail.gmail.com
Author: Steve Chavez
Reviewed-by: Erik Wienhold

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/927332b95e778c0d15a9fbf96e3efeab0d3d937c

Modified Files
--------------
src/bin/psql/t/010_tab_completion.pl | 8 ++++++++
src/bin/psql/tab-complete.c | 4 +++-
2 files changed, 11 insertions(+), 1 deletion(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Daniel Gustafsson 2024-03-16 22:22:48 pgsql: Add destroyStringInfo function for cleaning up StringInfos
Previous Message Alexander Korotkov 2024-03-15 19:38:16 pgsql: Use locale-aware value for \watch in 005_timeouts.pl