diff options
| author | Bruce Momjian | 2015-08-31 16:24:16 +0000 |
|---|---|---|
| committer | Bruce Momjian | 2015-08-31 16:24:16 +0000 |
| commit | 8f7d044ba842ab3359a8a3190ff2f3aa1de2a6bb (patch) | |
| tree | 7338634cce48dfb9e3713b22251501db1502fa86 | |
| parent | 93370076c40730ce2a9071c6a4694d6b0e5b2f0c (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 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; } |
