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 | a7f8e306d2af5b497077a0dc1bfd2cb27aa232f4 (patch) | |
tree | e39ad2189ef30832ae62e39c6b03003607c58c86 | |
parent | d66455bc9fff72593353c67c449fe2145dca7f19 (diff) |
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 b6558431225..83002f53bc0 100644 --- a/src/bin/psql/command.c +++ b/src/bin/psql/command.c @@ -2289,7 +2289,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, latex, troff-ms\n"); + psql_error("\\pset: allowed formats are unaligned, aligned, wrapped, html, latex, latex-longtable, troff-ms\n"); return false; } |