aboutsummaryrefslogtreecommitdiff
path: root/src/bin/psql/help.c
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2014-04-16 18:13:15 -0400
committerBruce Momjian <bruce@momjian.us>2014-04-16 18:13:45 -0400
commit8c349ba5c04c3b5fdceb13c35996e7ff4b69585f (patch)
treee4339b37efbe34edd9ac25bf704b2856e08c7b39 /src/bin/psql/help.c
parent83ab8e32f24542e3ab1f73b24c57cdbed6a4c9e4 (diff)
downloadpostgresql-8c349ba5c04c3b5fdceb13c35996e7ff4b69585f.tar.gz
postgresql-8c349ba5c04c3b5fdceb13c35996e7ff4b69585f.zip
psql: update --help output for unaligned mode params
Previously it wasn't clear from --help that -F, -R, -z, -0 only controlled psql unaligned output. Initial patch from Jov <amutu@amutu.com>, adjustments by me
Diffstat (limited to 'src/bin/psql/help.c')
-rw-r--r--src/bin/psql/help.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/bin/psql/help.c b/src/bin/psql/help.c
index baa94175ea1..3aa3c169c23 100644
--- a/src/bin/psql/help.c
+++ b/src/bin/psql/help.c
@@ -99,19 +99,19 @@ usage(void)
printf(_("\nOutput format options:\n"));
printf(_(" -A, --no-align unaligned table output mode\n"));
printf(_(" -F, --field-separator=STRING\n"
- " set field separator (default: \"%s\")\n"),
+ " field separator for unaligned output (default: \"%s\")\n"),
DEFAULT_FIELD_SEP);
printf(_(" -H, --html HTML table output mode\n"));
printf(_(" -P, --pset=VAR[=ARG] set printing option VAR to ARG (see \\pset command)\n"));
printf(_(" -R, --record-separator=STRING\n"
- " set record separator (default: newline)\n"));
+ " record separator for unaligned output (default: newline)\n"));
printf(_(" -t, --tuples-only print rows only\n"));
printf(_(" -T, --table-attr=TEXT set HTML table tag attributes (e.g., width, border)\n"));
printf(_(" -x, --expanded turn on expanded table output\n"));
printf(_(" -z, --field-separator-zero\n"
- " set field separator to zero byte\n"));
+ " set field separator for unaligned output to zero byte\n"));
printf(_(" -0, --record-separator-zero\n"
- " set record separator to zero byte\n"));
+ " set record separator for unaligned output to zero byte\n"));
printf(_("\nConnection options:\n"));
/* Display default host */