aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2015-08-31 12:24:16 -0400
committerBruce Momjian <bruce@momjian.us>2015-08-31 12:24:16 -0400
commitbda58e98d535762b46a9d6315f4e49d9c93e81d8 (patch)
tree96440c72b9964f3e2a4f8f2d6dc477b8a487d961
parentbafeb010b2500b31d303f4c2879cec54481dafdd (diff)
downloadpostgresql-bda58e98d535762b46a9d6315f4e49d9c93e81d8.tar.gz
postgresql-bda58e98d535762b46a9d6315f4e49d9c93e81d8.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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/psql/command.c b/src/bin/psql/command.c
index 467e34b1ffc..c60a76c519e 100644
--- a/src/bin/psql/command.c
+++ b/src/bin/psql/command.c
@@ -2374,7 +2374,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;
}