diff options
author | Bruce Momjian <bruce@momjian.us> | 2011-11-26 22:34:36 -0500 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2011-11-26 22:34:36 -0500 |
commit | 9a7d49d1fba666c8bfb9df0065545e85d54dbc41 (patch) | |
tree | cb90b60921660bec469c19f7ddfeb9b8793c544b /src/bin/pg_dump/pg_backup_db.c | |
parent | efb0423cc7c6e46c22816e2acc48e8f827e341ed (diff) | |
download | postgresql-9a7d49d1fba666c8bfb9df0065545e85d54dbc41.tar.gz postgresql-9a7d49d1fba666c8bfb9df0065545e85d54dbc41.zip |
Move pg_dump memory routines into pg_dumpmem.c/h and restore common.c
with its original functions. The previous function migration would
cause too many difficulties in back-patching.
Diffstat (limited to 'src/bin/pg_dump/pg_backup_db.c')
-rw-r--r-- | src/bin/pg_dump/pg_backup_db.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/pg_dump/pg_backup_db.c b/src/bin/pg_dump/pg_backup_db.c index a58eb2da701..bd1b8efac82 100644 --- a/src/bin/pg_dump/pg_backup_db.c +++ b/src/bin/pg_dump/pg_backup_db.c @@ -11,7 +11,7 @@ */ #include "pg_backup_db.h" -#include "common.h" +#include "dumpmem.h" #include "dumputils.h" #include <unistd.h> |