pgsql: Move pg_dump memory routines into pg_dumpmem.c/h and restore com - Mailing list pgsql-committers

From Bruce Momjian
Subject pgsql: Move pg_dump memory routines into pg_dumpmem.c/h and restore com
Date
Msg-id E1RUVXy-0004JD-RK@gemulon.postgresql.org
Whole thread Raw
Responses Re: pgsql: Move pg_dump memory routines into pg_dumpmem.c/h and restore com  (Andrew Dunstan <andrew@dunslane.net>)
List pgsql-committers
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.

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/9a7d49d1fba666c8bfb9df0065545e85d54dbc41

Modified Files
--------------
src/bin/pg_dump/Makefile              |    6 +-
src/bin/pg_dump/common.c              |  982 +++++++++++++++++++++++++++++++--
src/bin/pg_dump/common.h              |   24 -
src/bin/pg_dump/compress_io.c         |    2 +-
src/bin/pg_dump/dumpcatalog.c         |  978 --------------------------------
src/bin/pg_dump/dumpmem.c             |   73 +++
src/bin/pg_dump/dumpmem.h             |   24 +
src/bin/pg_dump/dumputils.c           |    2 +-
src/bin/pg_dump/pg_backup_archiver.c  |    2 +-
src/bin/pg_dump/pg_backup_custom.c    |    2 +-
src/bin/pg_dump/pg_backup_db.c        |    2 +-
src/bin/pg_dump/pg_backup_directory.c |    2 +-
src/bin/pg_dump/pg_backup_files.c     |    2 +-
src/bin/pg_dump/pg_backup_null.c      |    2 +-
src/bin/pg_dump/pg_backup_tar.c       |    2 +-
src/bin/pg_dump/pg_dump.c             |    2 +-
src/bin/pg_dump/pg_dump_sort.c        |    2 +-
src/bin/pg_dump/pg_restore.c          |    2 +-
18 files changed, 1056 insertions(+), 1055 deletions(-)


pgsql-committers by date:

Previous
From: Andrew Dunstan
Date:
Subject: pgsql: Use the right interpreter for encoding test.
Next
From: Andrew Dunstan
Date:
Subject: pgsql: Fix MSVC builds broken by xsubpp change