diff options
author | Stephen Frost <sfrost@snowman.net> | 2014-09-12 12:04:37 -0400 |
---|---|---|
committer | Stephen Frost <sfrost@snowman.net> | 2014-09-12 12:04:37 -0400 |
commit | a2dabf0e1dda93c860b10bff7b73617e7b090108 (patch) | |
tree | 9f53e54cfd0537dae516d792504d467fa30d4ab2 /src/bin/psql/help.c | |
parent | 82962838d4bea2a20babbd2efacb48b268b4a689 (diff) | |
download | postgresql-a2dabf0e1dda93c860b10bff7b73617e7b090108.tar.gz postgresql-a2dabf0e1dda93c860b10bff7b73617e7b090108.zip |
Add unicode_{column|header|border}_style to psql
With the unicode linestyle, this adds support to control if the
column, header, or border style should be single or double line
unicode characters. The default remains 'single'.
In passing, clean up the border documentation and address some
minor formatting/spelling issues.
Pavel Stehule, with some additional changes by me.
Diffstat (limited to 'src/bin/psql/help.c')
-rw-r--r-- | src/bin/psql/help.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/bin/psql/help.c b/src/bin/psql/help.c index ef35696339b..6035a7771a9 100644 --- a/src/bin/psql/help.c +++ b/src/bin/psql/help.c @@ -249,7 +249,8 @@ slashUsage(unsigned short int pager) 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")); + " numericlocale|recordsep|recordsep_zero|tuples_only|title|tableattr|pager|\n" + " unicode_border_linestyle|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")); |