diff options
| author | Bruce Momjian | 2015-08-31 16:24:16 +0000 |
|---|---|---|
| committer | Bruce Momjian | 2015-08-31 16:24:16 +0000 |
| commit | ce6e50aebe5d0874d64767b8963b162fdc186fa7 (patch) | |
| tree | 2b676aaac3dc76c79b628d0ec6bc9c970dc9a1b7 | |
| parent | 12da677179c3febd8d3c829fffa5cd2f922f6286 (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 1f377cb7031..6a8d0488383 100644 --- a/src/bin/psql/command.c +++ b/src/bin/psql/command.c @@ -2324,7 +2324,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; } |
