diff options
author | Bruce Momjian <bruce@momjian.us> | 2002-03-05 06:13:19 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2002-03-05 06:13:19 +0000 |
commit | ed5eb09cce2707d52670fc717aee482aeeb2c08d (patch) | |
tree | 5c122ed6f91ea27c7fd28727e254851987a06c14 /src | |
parent | 8fdc7814d0450276362f6e1809c5813ceb90a7d4 (diff) | |
download | postgresql-ed5eb09cce2707d52670fc717aee482aeeb2c08d.tar.gz postgresql-ed5eb09cce2707d52670fc717aee482aeeb2c08d.zip |
Adds \du documentation line for \? in psqls help.c
Thought I saw a patch earlier converting docs to use []s, so this uses
them.
Rod Taylor
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/psql/help.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/bin/psql/help.c b/src/bin/psql/help.c index 3c28441181f..34bcc8152ea 100644 --- a/src/bin/psql/help.c +++ b/src/bin/psql/help.c @@ -3,7 +3,7 @@ * * Copyright 2000 by PostgreSQL Global Development Group * - * $Header: /cvsroot/pgsql/src/bin/psql/help.c,v 1.43 2002/03/05 00:01:01 momjian Exp $ + * $Header: /cvsroot/pgsql/src/bin/psql/help.c,v 1.44 2002/03/05 06:13:19 momjian Exp $ */ #include "postgres_fe.h" #include "help.h" @@ -205,6 +205,7 @@ slashUsage(void) fprintf(fout, _(" \\df list functions\n")); fprintf(fout, _(" \\do list operators\n")); fprintf(fout, _(" \\dT list data types\n")); + fprintf(fout, _(" \\du [PATTERN] Lists all configured users or only those that match pattern\n")); fprintf(fout, _(" \\e FILENAME edit the current query buffer or file with external editor\n")); fprintf(fout, _(" \\echo TEXT write text to standard output\n")); fprintf(fout, _(" \\encoding ENCODING set client encoding\n")); |