|
3 | 3 | * |
4 | 4 | * Copyright 2000 by PostgreSQL Global Development Group |
5 | 5 | * |
6 | | - * $Header: /cvsroot/pgsql/src/bin/psql/help.c,v 1.54 2002/08/10 19:35:01 tgl Exp $ |
| 6 | + * $Header: /cvsroot/pgsql/src/bin/psql/help.c,v 1.55 2002/08/27 18:28:29 momjian Exp $ |
7 | 7 | */ |
8 | 8 | #include"postgres_fe.h" |
9 | 9 | #include"print.h" |
@@ -211,17 +211,17 @@ slashUsage(bool pager) |
211 | 211 | fprintf(output,_(" \\cd [DIR] change the current working directory\n")); |
212 | 212 | fprintf(output,_(" \\copy ... perform SQL COPY with data stream to the client host\n")); |
213 | 213 | fprintf(output,_(" \\copyright show PostgreSQL usage and distribution terms\n")); |
214 | | -fprintf(output,_(" \\d [NAME] describe table (or view, index, sequence)\n")); |
215 | | -fprintf(output,_(" \\d{t|i|s|v|S} [PATTERN]\n")); |
| 214 | +fprintf(output,_(" \\d [NAME] describe table, index, sequence, or view\n")); |
| 215 | +fprintf(output,_(" \\d{t|i|s|v|S} [PATTERN] (add '+' for more detail)\n")); |
216 | 216 | fprintf(output,_(" list tables/indexes/sequences/views/system tables\n")); |
217 | 217 | fprintf(output,_(" \\da [PATTERN] list aggregate functions\n")); |
218 | 218 | fprintf(output,_(" \\dd [PATTERN] show comment for object\n")); |
219 | 219 | fprintf(output,_(" \\dD [PATTERN] list domains\n")); |
220 | | -fprintf(output,_(" \\df [PATTERN] list functions\n")); |
| 220 | +fprintf(output,_(" \\df [PATTERN] list functions (add '+' for more detail)\n")); |
221 | 221 | fprintf(output,_(" \\do [NAME] list operators\n")); |
222 | 222 | fprintf(output,_(" \\dl list large objects, same as lo_list\n")); |
223 | 223 | fprintf(output,_(" \\dp [PATTERN] list table access privileges\n")); |
224 | | -fprintf(output,_(" \\dT [PATTERN] list data types\n")); |
| 224 | +fprintf(output,_(" \\dT [PATTERN] list data types (add '+' for more detail)\n")); |
225 | 225 | fprintf(output,_(" \\du [PATTERN] list users\n")); |
226 | 226 | fprintf(output,_(" \\e [FILE] edit the query buffer (or file) with external editor\n")); |
227 | 227 | fprintf(output,_(" \\echo [STRING] write string to standard output\n")); |
|