pgsql: Minimal psql tab completion support for SET search_path.

From: Andres Freund <andres(at)anarazel(dot)de>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Minimal psql tab completion support for SET search_path.
Date: 2014-07-12 13:51:26
Message-ID: E1X5xi2-0006Bl-VT@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Minimal psql tab completion support for SET search_path.

Complete SET search_path = ... to non-temporary and non-toast
schemas. Since there pretty much is no use case to add those to the
search path and there can be many it's helpful to exclude them.

It'd be nicer to complete multiple search path elements, but that's
not easy.

Jeff Janes

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/bd409519bd19911d2d2cba64415447d2fa9d766b

Modified Files
--------------
src/bin/psql/tab-complete.c | 7 +++++++
1 file changed, 7 insertions(+)

Browse pgsql-committers by date

  From Date Subject
Next Message Magnus Hagander 2014-07-12 17:39:19 pgsql: Support --with-extra-version equivalent functionality in MSVC bu
Previous Message Andres Freund 2014-07-12 12:49:26 pgsql: Fix decoding of consecutive MULTI_INSERTs emitted by one heap_mu