diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2002-08-27 18:57:26 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2002-08-27 18:57:26 +0000 |
commit | 7af5ea736f680109de569b00f2c36ea8e0211aea (patch) | |
tree | 8d8fbace7d50af4c5393e35dc523fa818fb1664a /src/bin/pg_dump/pg_backup_db.c | |
parent | 6deb649cd3d985ca25c4e229ff9ab249a657b329 (diff) | |
download | postgresql-7af5ea736f680109de569b00f2c36ea8e0211aea.tar.gz postgresql-7af5ea736f680109de569b00f2c36ea8e0211aea.zip |
Reimplement pg_dumpall in C. Currently no change in functionality,
except that it's more robust, reconnects less often, and is NLS'ed.
Diffstat (limited to 'src/bin/pg_dump/pg_backup_db.c')
-rw-r--r-- | src/bin/pg_dump/pg_backup_db.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/bin/pg_dump/pg_backup_db.c b/src/bin/pg_dump/pg_backup_db.c index ed77984e178..f54153d4aec 100644 --- a/src/bin/pg_dump/pg_backup_db.c +++ b/src/bin/pg_dump/pg_backup_db.c @@ -5,7 +5,7 @@ * Implements the basic DB functions used by the archiver. * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_backup_db.c,v 1.38 2002/08/20 17:54:44 petere Exp $ + * $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_backup_db.c,v 1.39 2002/08/27 18:57:26 petere Exp $ * *------------------------------------------------------------------------- */ @@ -13,6 +13,7 @@ #include "pg_backup.h" #include "pg_backup_archiver.h" #include "pg_backup_db.h" +#include "dumputils.h" #include <unistd.h> #include <ctype.h> |