From: Peter Eisentraut Date: Mon, 29 Jan 2018 19:04:32 +0000 (-0500) Subject: psql documentation fixes X-Git-Tag: REL9_6_7~9 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8067cf816cd49d47f258a1115a1443a4e70b3864;p=postgresql psql documentation fixes Update the documentation for \pset to mention columns|linestyle|pager_min_lines. Author: Дилян Палаузов --- diff --git a/doc/src/sgml/ref/psql-ref.sgml b/doc/src/sgml/ref/psql-ref.sgml index d74d025bee..70075fc4ac 100644 --- a/doc/src/sgml/ref/psql-ref.sgml +++ b/doc/src/sgml/ref/psql-ref.sgml @@ -2599,8 +2599,9 @@ lo_import 152801 There are various shortcut commands for \pset. See - \a, \C, \H, - \t, \T, and \x. + \a, \C, \f, + \H, \t, \T, + and \x. diff --git a/src/bin/psql/help.c b/src/bin/psql/help.c index a69c4dd8cf..ea6cb84081 100644 --- a/src/bin/psql/help.c +++ b/src/bin/psql/help.c @@ -262,9 +262,11 @@ slashUsage(unsigned short int pager) fprintf(output, _(" \\H toggle HTML output mode (currently %s)\n"), ON(pset.popt.topt.format == PRINT_HTML)); fprintf(output, _(" \\pset [NAME [VALUE]] set table output option\n" - " (NAME := {format|border|expanded|fieldsep|fieldsep_zero|footer|null|\n" - " numericlocale|recordsep|recordsep_zero|tuples_only|title|tableattr|pager|\n" - " unicode_border_linestyle|unicode_column_linestyle|unicode_header_linestyle})\n")); + " (NAME := {border|columns|expanded|fieldsep|fieldsep_zero|\n" + " footer|format|linestyle|null|numericlocale|pager|\n" + " pager_min_lines|recordsep|recordsep_zero|tableattr|title|\n" + " tuples_only|unicode_border_linestyle|\n" + " unicode_column_linestyle|unicode_header_linestyle})\n")); fprintf(output, _(" \\t [on|off] show only rows (currently %s)\n"), ON(pset.popt.topt.tuples_only)); fprintf(output, _(" \\T [STRING] set HTML tag attributes, or unset if none\n"));