|
21 | 21 | *
|
22 | 22 | *
|
23 | 23 | * IDENTIFICATION
|
24 |
| - * $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_dump.c,v 1.108 1999/05/25 16:13:06 momjian Exp $ |
| 24 | + * $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_dump.c,v 1.109 1999/05/26 14:50:38 momjian Exp $ |
25 | 25 | *
|
26 | 26 | * Modifications - 6/10/96 - dave@bensoft.com - version 1.13.dhb
|
27 | 27 | *
|
@@ -426,11 +426,14 @@ dumpClasses(const TableInfo *tblinfo, const int numTables, FILE *fout,
|
426 | 426 | if (onlytable==NULL)
|
427 | 427 | all_only="all";
|
428 | 428 | else
|
429 |
| -all_only="one"; |
| 429 | +all_only="only"; |
430 | 430 |
|
431 | 431 | if (g_verbose)
|
432 |
| -fprintf(stderr,"%s dumping out the contents of %s of %d tables %s\n", |
433 |
| -g_comment_start,all_only,numTables,g_comment_end); |
| 432 | +fprintf(stderr,"%s dumping out the contents of %s %d table%s/sequence%s %s\n", |
| 433 | +g_comment_start,all_only, |
| 434 | +(onlytable==NULL) ?numTables :1, |
| 435 | +(onlytable==NULL) ?"s" :"", (onlytable==NULL) ?"s" :"", |
| 436 | +g_comment_end); |
434 | 437 |
|
435 | 438 | /* Dump SEQUENCEs first (if dataOnly) */
|
436 | 439 | if (dataOnly)
|
|