diff options
author | Robert Haas <rhaas@postgresql.org> | 2013-10-03 15:18:02 -0400 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2013-10-03 15:18:02 -0400 |
commit | c64e68fd9f1132fec563fb5de53dc3bcccb5fc3b (patch) | |
tree | 9427cfec4bd43e0f2c2a22a39f0cfa07ed47e20c /src/bin/psql/help.c | |
parent | c2b175b94851e59765cc87243d8faf923e3d820b (diff) |
psql: Make \pset without arguments show all settings.
Gilles Darold, reviewed by Pavel Stehule
Diffstat (limited to 'src/bin/psql/help.c')
-rw-r--r-- | src/bin/psql/help.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/psql/help.c b/src/bin/psql/help.c index 379deada4fe..30530f2e37c 100644 --- a/src/bin/psql/help.c +++ b/src/bin/psql/help.c @@ -247,7 +247,7 @@ slashUsage(unsigned short int pager) fprintf(output, _(" \\f [STRING] show or set field separator for unaligned query output\n")); 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" + 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")); fprintf(output, _(" \\t [on|off] show only rows (currently %s)\n"), |