]> git.ipfire.org Git - thirdparty/postgresql.git/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:18:11 +0000 (14:18 -0500)
Update the documentation for \pset to mention
columns|linestyle.

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

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

index 4449041dcc68eafbbf18c62c379dfb993110349b..84a29e740bf448a563e5e98366aee085a0c67e2e 100644 (file)
@@ -2332,8 +2332,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 d7267361da51aebcdf3045ab079ff09057c536e4..e0dbd62426047a746281875faf2796dcab75cd42 100644 (file)
@@ -233,8 +233,9 @@ 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"));
+                                         "                         (NAME := {border|columns|expanded|fieldsep|fieldsep_zero|\n"
+                                         "                         footer|format|linestyle|null|numericlocale|pager|\n"
+                                         "                         recordsep|recordsep_zero|tableattr|title|tuples_only})\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"));