diff options
author | Bruce Momjian <bruce@momjian.us> | 2004-07-13 16:48:16 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2004-07-13 16:48:16 +0000 |
commit | bbcee544aa551ada483281723faa6cea3b279e84 (patch) | |
tree | 8805b4767879c83a2b62de158b4618e6573280ca /src/bin/psql/help.c | |
parent | dc0e76ca36b4f7b91c3b83e53012585c5eccbe98 (diff) | |
download | postgresql-bbcee544aa551ada483281723faa6cea3b279e84.tar.gz postgresql-bbcee544aa551ada483281723faa6cea3b279e84.zip |
Have \dn+ show permissions and description for schemas.
Dennis Bjorklund
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 ed9574a2297..1fffbd25b4d 100644 --- a/src/bin/psql/help.c +++ b/src/bin/psql/help.c @@ -3,7 +3,7 @@ * * Copyright (c) 2000-2003, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/bin/psql/help.c,v 1.88 2004/06/18 06:14:04 tgl Exp $ + * $PostgreSQL: pgsql/src/bin/psql/help.c,v 1.89 2004/07/13 16:48:16 momjian Exp $ */ #include "postgres_fe.h" #include "common.h" @@ -218,7 +218,7 @@ slashUsage(unsigned short int pager) fprintf(output, _(" \\dD [PATTERN] list domains\n")); fprintf(output, _(" \\df [PATTERN] list functions (add \"+\" for more detail)\n")); fprintf(output, _(" \\dg [PATTERN] list groups\n")); - fprintf(output, _(" \\dn [PATTERN] list schemas\n")); + fprintf(output, _(" \\dn [PATTERN] list schemas (add \"+\" for more detail)\n")); fprintf(output, _(" \\do [NAME] list operators\n")); fprintf(output, _(" \\dl list large objects, same as \\lo_list\n")); fprintf(output, _(" \\dp [PATTERN] list table, view and sequence access privileges\n")); |