diff options
author | Bruce Momjian <bruce@momjian.us> | 2015-08-31 12:24:16 -0400 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2015-08-31 12:24:16 -0400 |
commit | 8f7d044ba842ab3359a8a3190ff2f3aa1de2a6bb (patch) | |
tree | 7338634cce48dfb9e3713b22251501db1502fa86 | |
parent | 93370076c40730ce2a9071c6a4694d6b0e5b2f0c (diff) | |
download | postgresql-8f7d044ba842ab3359a8a3190ff2f3aa1de2a6bb.tar.gz postgresql-8f7d044ba842ab3359a8a3190ff2f3aa1de2a6bb.zip |
psql: print longtable as a possible \pset option
For some reason this message was not updated when the longtable option
was added.
Backpatch through 9.3
-rw-r--r-- | src/bin/psql/command.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/psql/command.c b/src/bin/psql/command.c index 6181a616785..a02ef631e80 100644 --- a/src/bin/psql/command.c +++ b/src/bin/psql/command.c @@ -2486,7 +2486,7 @@ do_pset(const char *param, const char *value, printQueryOpt *popt, bool quiet) popt->topt.format = PRINT_TROFF_MS; else { - psql_error("\\pset: allowed formats are unaligned, aligned, wrapped, html, asciidoc, latex, troff-ms\n"); + psql_error("\\pset: allowed formats are unaligned, aligned, wrapped, html, asciidoc, latex, latex-longtable, troff-ms\n"); return false; } |