diff options
author | Bruce Momjian <bruce@momjian.us> | 2009-04-21 15:49:06 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2009-04-21 15:49:06 +0000 |
commit | aeb3c2fce4bac3c56c538e1dd40658acf786b200 (patch) | |
tree | 5bbacdcd8e04557fe2f9fd28c11c82fde8607e31 /src/bin/psql/help.c | |
parent | 02dec25003c7198863ca858dd94aaa8ad127680f (diff) | |
download | postgresql-aeb3c2fce4bac3c56c538e1dd40658acf786b200.tar.gz postgresql-aeb3c2fce4bac3c56c538e1dd40658acf786b200.zip |
Add agg/normal/trigger/window flags for psql \df and in \df output.
David Fetter
Diffstat (limited to 'src/bin/psql/help.c')
-rw-r--r-- | src/bin/psql/help.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/bin/psql/help.c b/src/bin/psql/help.c index a0ca95c3b73..a3da9e2ca02 100644 --- a/src/bin/psql/help.c +++ b/src/bin/psql/help.c @@ -3,7 +3,7 @@ * * Copyright (c) 2000-2009, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/bin/psql/help.c,v 1.146 2009/04/11 14:11:21 petere Exp $ + * $PostgreSQL: pgsql/src/bin/psql/help.c,v 1.147 2009/04/21 15:49:06 momjian Exp $ */ #include "postgres_fe.h" @@ -196,7 +196,7 @@ slashUsage(unsigned short int pager) fprintf(output, _(" (options: S = show system objects, + = additional detail)\n")); fprintf(output, _(" \\d[S+] list tables, views, and sequences\n")); fprintf(output, _(" \\d[S+] NAME describe table, view, sequence, or index\n")); - fprintf(output, _(" \\da[S] [PATTERN] list aggregate functions\n")); + fprintf(output, _(" \\da[+] [PATTERN] list aggregates\n")); fprintf(output, _(" \\db[+] [PATTERN] list tablespaces\n")); fprintf(output, _(" \\dc[S] [PATTERN] list conversions\n")); fprintf(output, _(" \\dC [PATTERN] list casts\n")); @@ -206,6 +206,7 @@ slashUsage(unsigned short int pager) fprintf(output, _(" \\deu[+] [PATTERN] list user mappings\n")); fprintf(output, _(" \\dew[+] [PATTERN] list foreign-data wrappers\n")); fprintf(output, _(" \\df[S+] [PATTERN] list functions\n")); + fprintf(output, _(" \\df[antwS+] [PATTERN] list only agg/normal/trigger/window functions\n")); fprintf(output, _(" \\dF[+] [PATTERN] list text search configurations\n")); fprintf(output, _(" \\dFd[+] [PATTERN] list text search dictionaries\n")); fprintf(output, _(" \\dFp[+] [PATTERN] list text search parsers\n")); |