diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2011-10-12 13:59:30 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2011-10-12 14:00:01 -0400 |
commit | 66a28adbc5e46e889a7d126d9a64497f6b492920 (patch) | |
tree | 575d6694ea25ebf8e47081b3ed28ad40aeea868d | |
parent | e0448c0c5173bcb24a1ec97daecac17aed78eb0c (diff) |
Improve documentation of psql's \q command.
The documentation neglected to explain its behavior in a script file
(it only ends execution of the script, not psql as a whole), and failed
to mention the long form \quit either.
-rw-r--r-- | doc/src/sgml/ref/psql-ref.sgml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/src/sgml/ref/psql-ref.sgml b/doc/src/sgml/ref/psql-ref.sgml index a42ed3d2857..79a0ed4f4bb 100644 --- a/doc/src/sgml/ref/psql-ref.sgml +++ b/doc/src/sgml/ref/psql-ref.sgml @@ -2122,10 +2122,11 @@ lo_import 152801 <varlistentry> - <term><literal>\q</literal></term> + <term><literal>\q</literal> or <literal>\quit</literal></term> <listitem> <para> Quits the <application>psql</application> program. + In a script file, only execution of that script is terminated. </para> </listitem> </varlistentry> |