diff options
Diffstat (limited to 'contrib/pg_dumplo')
-rw-r--r-- | contrib/pg_dumplo/INSTALL | 3 | ||||
-rw-r--r-- | contrib/pg_dumplo/Makefile.out | 0 | ||||
-rw-r--r-- | contrib/pg_dumplo/lo_export.c | 4 | ||||
-rw-r--r-- | contrib/pg_dumplo/main.c | 3 |
4 files changed, 5 insertions, 5 deletions
diff --git a/contrib/pg_dumplo/INSTALL b/contrib/pg_dumplo/INSTALL index 8959a462b1f..b199db54f48 100644 --- a/contrib/pg_dumplo/INSTALL +++ b/contrib/pg_dumplo/INSTALL @@ -9,11 +9,10 @@ this help or the cool HOWTO. Compilation: ~~~~~~~~~~~ - - In the PG contrib tree: * run master ./configure in the PG source top directory * run 'make' - * run 'make install' + THANKS: ~~~~~~ <??? I lost his e-mail ???> diff --git a/contrib/pg_dumplo/Makefile.out b/contrib/pg_dumplo/Makefile.out deleted file mode 100644 index e69de29bb2d..00000000000 --- a/contrib/pg_dumplo/Makefile.out +++ /dev/null diff --git a/contrib/pg_dumplo/lo_export.c b/contrib/pg_dumplo/lo_export.c index 80d401902c1..e18c3ef651e 100644 --- a/contrib/pg_dumplo/lo_export.c +++ b/contrib/pg_dumplo/lo_export.c @@ -104,7 +104,7 @@ pglo_export(LODumpMaster *pgLO) if ((tuples = PQntuples(pgLO->res)) == 0) { if (!pgLO->quiet && pgLO->action == ACTION_EXPORT_ATTR) - printf("%s: not large objets in '%s'\n", progname, ll->lo_table); + printf("%s: no large objets in '%s'\n", progname, ll->lo_table); continue; } else if (check_res(pgLO)) { @@ -137,7 +137,7 @@ pglo_export(LODumpMaster *pgLO) } if (!pgLO->quiet) - printf("dump %s.%s (%d lagre obj)\n", + printf("dump %s.%s (%d large obj)\n", ll->lo_table, ll->lo_attr, tuples); } diff --git a/contrib/pg_dumplo/main.c b/contrib/pg_dumplo/main.c index eafaed8c657..d9bdf9eb446 100644 --- a/contrib/pg_dumplo/main.c +++ b/contrib/pg_dumplo/main.c @@ -4,7 +4,7 @@ * * Portions Copyright (c) 1999-2000, PostgreSQL, Inc * - * $Header: /cvsroot/pgsql/contrib/pg_dumplo/Attic/main.c,v 1.2 2000/06/19 13:54:01 momjian Exp $ + * $Header: /cvsroot/pgsql/contrib/pg_dumplo/Attic/main.c,v 1.3 2000/07/03 16:03:22 momjian Exp $ * * Karel Zak 1999-2000 * ------------------------------------------------------------------------- @@ -85,6 +85,7 @@ main(int argc, char **argv) { "host", required_argument, 0, 'h' }, { "space", required_argument, 0, 's' }, { "import", no_argument, 0, 'i' }, + { "export", no_argument, 0, 'e' }, { "remove", no_argument, 0, 'r' }, { "quiet", no_argument, 0, 'q' }, { "all", no_argument, 0, 'a' }, |