|
3 | 3 | *
|
4 | 4 | * Copyright 2000 by PostgreSQL Global Development Group
|
5 | 5 | *
|
6 |
| - * $Header: /cvsroot/pgsql/src/bin/psql/help.c,v 1.28 2000/05/11 01:37:54 momjian Exp $ |
| 6 | + * $Header: /cvsroot/pgsql/src/bin/psql/help.c,v 1.29 2000/05/11 18:41:00 momjian Exp $ |
7 | 7 | */
|
8 | 8 | #include "postgres.h"
|
9 | 9 | #include "help.h"
|
@@ -117,7 +117,7 @@ usage(void)
|
117 | 117 | puts(" -R <string> Set record separator (default: newline) (-P recordsep=)");
|
118 | 118 | puts(" -s Single step mode (confirm each query)");
|
119 | 119 | puts(" -S Single line mode (newline terminates query)");
|
120 |
| - puts(" -t Don't print headings and row count (-P tuples_only)"); |
| 120 | + puts(" -t Print rows only (-P tuples_only)"); |
121 | 121 | puts(" -T text Set HTML table tag options (width, border) (-P tableattr=)");
|
122 | 122 |
|
123 | 123 | /* Display default user */
|
@@ -232,7 +232,7 @@ slashUsage(void)
|
232 | 232 | fprintf(fout, " \\r reset (clear) the query buffer\n");
|
233 | 233 | fprintf(fout, " \\s [file] print history or save it in [file]\n");
|
234 | 234 | fprintf(fout, " \\set <var> <value> set internal variable\n");
|
235 |
| - fprintf(fout, " \\t don't show table headers or footers (currently %s)\n", ON(pset.popt.topt.tuples_only)); |
| 235 | + fprintf(fout, " \\t show only rows (currently %s)\n", ON(pset.popt.topt.tuples_only)); |
236 | 236 | fprintf(fout, " \\T <tags> HTML table tags\n");
|
237 | 237 | fprintf(fout, " \\unset <var> unset (delete) internal variable\n");
|
238 | 238 | fprintf(fout, " \\w <file> write current query buffer to a <file>\n");
|
|
0 commit comments