diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2017-07-04 21:10:08 -0400 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2017-07-04 21:10:08 -0400 |
commit | 5191e357cf22e200a9baaf97bbe8a07ee2537537 (patch) | |
tree | 2eb8e6ca35223d247353ded283fd4e6bb52e0ca5 /src | |
parent | 012d83f57aff973a73214262f3d87105786e3500 (diff) | |
download | postgresql-5191e357cf22e200a9baaf97bbe8a07ee2537537.tar.gz postgresql-5191e357cf22e200a9baaf97bbe8a07ee2537537.zip |
psql documentation fixes
Update the documentation for \pset to mention
columns|linestyle|pager_min_lines. Add various mentions of \pset
command equivalences that were previously inconsistent.
Author: Дилян Палаузов <dpa-postgres@aegee.org>
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/psql/help.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/bin/psql/help.c b/src/bin/psql/help.c index 8e08da79e9d..b3dbb5946ea 100644 --- a/src/bin/psql/help.c +++ b/src/bin/psql/help.c @@ -271,9 +271,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")); |