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 | ce6e50aebe5d0874d64767b8963b162fdc186fa7 (patch) | |
tree | 2b676aaac3dc76c79b628d0ec6bc9c970dc9a1b7 | |
parent | 12da677179c3febd8d3c829fffa5cd2f922f6286 (diff) | |
download | postgresql-ce6e50aebe5d0874d64767b8963b162fdc186fa7.tar.gz postgresql-ce6e50aebe5d0874d64767b8963b162fdc186fa7.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 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; } |