diff options
author | Bruce Momjian <bruce@momjian.us> | 2009-01-06 23:09:56 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2009-01-06 23:09:56 +0000 |
commit | 17f601ecb23ff1eee6bc99c8836fe0e023620194 (patch) | |
tree | abf516ac5370eedfb96e8df303d9c7dec10d3bbd /src/bin/psql/help.c | |
parent | f5ed2ee53319a72ff773eccb014cf81be5847b35 (diff) | |
download | postgresql-17f601ecb23ff1eee6bc99c8836fe0e023620194.tar.gz postgresql-17f601ecb23ff1eee6bc99c8836fe0e023620194.zip |
Improve \z psql \? help display.
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 f4bbafdfa6e..96da3a3557f 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.135 2009/01/06 23:01:57 momjian Exp $ + * $PostgreSQL: pgsql/src/bin/psql/help.c,v 1.136 2009/01/06 23:09:56 momjian Exp $ */ #include "postgres_fe.h" @@ -219,7 +219,7 @@ slashUsage(unsigned short int pager) fprintf(output, _(" \\dn[+] [PATTERN] list schemas\n")); fprintf(output, _(" \\do[S] [PATTERN] list operators\n")); fprintf(output, _(" \\dp [PATTERN] list table, view, and sequence access privileges\n")); - fprintf(output, _(" \\z [PATTERN] same as \\dp\n")); + fprintf(output, _(" \\z [PATTERN] same as \\dp\n")); fprintf(output, _(" \\ds[S+] [PATTERN] list sequences\n")); fprintf(output, _(" \\dt[S+] [PATTERN] list tables\n")); fprintf(output, _(" \\dT[S+] [PATTERN] list data types\n")); |