From bda58e98d535762b46a9d6315f4e49d9c93e81d8 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Mon, 31 Aug 2015 12:24:16 -0400 Subject: [PATCH] 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 --- src/bin/psql/command.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/psql/command.c b/src/bin/psql/command.c index 467e34b1ff..c60a76c519 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; }