]> granicus.if.org Git - postgresql/commitdiff
psql documentation fixes
authorPeter Eisentraut <peter_e@gmx.net>
Mon, 29 Jan 2018 19:04:32 +0000 (14:04 -0500)
committerPeter Eisentraut <peter_e@gmx.net>
Mon, 29 Jan 2018 19:04:32 +0000 (14:04 -0500)
Update the documentation for \pset to mention
columns|linestyle|pager_min_lines.

Author: Дилян Палаузов <dpa-postgres@aegee.org>

doc/src/sgml/ref/psql-ref.sgml
src/bin/psql/help.c

index d74d025bee8b265acc307c7959f5ef5a64ff8908..70075fc4ac29c74c3d8c62db4074b60580dd889a 100644 (file)
@@ -2599,8 +2599,9 @@ lo_import 152801
         <tip>
         <para>
         There are various shortcut commands for <command>\pset</command>. See
-        <command>\a</command>, <command>\C</command>, <command>\H</command>,
-        <command>\t</command>, <command>\T</command>, and <command>\x</command>.
+        <command>\a</command>, <command>\C</command>, <command>\f</command>,
+        <command>\H</command>, <command>\t</command>, <command>\T</command>,
+        and <command>\x</command>.
         </para>
         </tip>
 
index a69c4dd8cfe81cf5eabcf2bcc114c145cb7874ff..ea6cb840815d04ffc2233184f5f23bae05bf31d2 100644 (file)
@@ -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 <table> tag attributes, or unset if none\n"));