]> 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:22:15 +0000 (14:22 -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 4cbdb5308c83136664836d9bfc4db833cff32249..120bdb02eb11339290ebd8b0d2ebebdc671bcd37 100644 (file)
@@ -2315,8 +2315,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 58f9520ab8f3f33eaaf243d63e21d5ad80118ab9..7bb008257107b6be73d02d2c5a76524ab4c1ccef 100644 (file)
@@ -248,8 +248,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"));