diff options
author | Kevin Grittner | 2011-08-09 14:06:50 +0000 |
---|---|---|
committer | Kevin Grittner | 2011-08-09 14:06:50 +0000 |
commit | 4ab003fa8692a7c88300435ccc864efd1cf5e896 (patch) | |
tree | 508aecca2f196e92970dc96225d10bac4d735947 /src/bin/psql/help.c | |
parent | cfa9d7f040ae1a9d1fe8fbf32b6a003d251a59f0 (diff) | |
parent | 77949a2913b3cbaa7b2e2a73f014d541e251f18b (diff) |
Merge branch 'master' into bug6123bug6123
Diffstat (limited to 'src/bin/psql/help.c')
-rw-r--r-- | src/bin/psql/help.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/psql/help.c b/src/bin/psql/help.c index d3b8c170fa..b99ba3acfb 100644 --- a/src/bin/psql/help.c +++ b/src/bin/psql/help.c @@ -195,11 +195,11 @@ slashUsage(unsigned short int pager) fprintf(output, _(" \\d[S+] NAME describe table, view, sequence, or index\n")); fprintf(output, _(" \\da[S] [PATTERN] list aggregates\n")); fprintf(output, _(" \\db[+] [PATTERN] list tablespaces\n")); - fprintf(output, _(" \\dc[S] [PATTERN] list conversions\n")); + fprintf(output, _(" \\dc[S+] [PATTERN] list conversions\n")); fprintf(output, _(" \\dC[+] [PATTERN] list casts\n")); fprintf(output, _(" \\dd[S] [PATTERN] show comments on objects\n")); fprintf(output, _(" \\ddp [PATTERN] list default privileges\n")); - fprintf(output, _(" \\dD[S] [PATTERN] list domains\n")); + fprintf(output, _(" \\dD[S+] [PATTERN] list domains\n")); fprintf(output, _(" \\det[+] [PATTERN] list foreign tables\n")); fprintf(output, _(" \\des[+] [PATTERN] list foreign servers\n")); fprintf(output, _(" \\deu[+] [PATTERN] list user mappings\n")); |