]> granicus.if.org Git - postgresql/commit
psql: Add \gx command
authorStephen Frost <sfrost@snowman.net>
Tue, 7 Mar 2017 14:31:52 +0000 (09:31 -0500)
committerStephen Frost <sfrost@snowman.net>
Tue, 7 Mar 2017 14:31:52 +0000 (09:31 -0500)
commitb2678efd43f17db7dfa04e0ca076ea01275cd9bc
tree286017423ffd724b3759be1141dc67df45484eae
parent9a83d56b38c870ce47b7651385ff2add583bf136
psql: Add \gx command

It can often be useful to use expanded mode output (\x) for just a
single query.  Introduce a \gx which acts exactly like \g except that it
will force expanded output mode for that one \gx call.  This is simpler
than having to use \x as a toggle and also means that the user doesn't
have to worry about the current state of the expanded variable, or
resetting it later, to ensure a given query is always returned in
expanded mode.

Primairly Christoph's patch, though I did tweak the documentation and help
text a bit, and re-indented the tab completion section.

Author: Christoph Berg
Reviewed By: Daniel Verite
Discussion: https://postgr.es/m/20170127132737.6skslelaf4txs6iw%40msg.credativ.de
doc/src/sgml/ref/psql-ref.sgml
src/bin/psql/command.c
src/bin/psql/common.c
src/bin/psql/help.c
src/bin/psql/settings.h
src/bin/psql/tab-complete.c
src/test/regress/expected/psql.out
src/test/regress/sql/psql.sql