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_custom.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_custom.c')
-rw-r--r-- | src/bin/pg_dump/pg_backup_custom.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/pg_dump/pg_backup_custom.c b/src/bin/pg_dump/pg_backup_custom.c index bfdf482a6b2..b2f3196bf9c 100644 --- a/src/bin/pg_dump/pg_backup_custom.c +++ b/src/bin/pg_dump/pg_backup_custom.c @@ -25,7 +25,7 @@ */ #include "compress_io.h" -#include "common.h" +#include "dumpmem.h" /*-------- * Routines in the format interface |