pgsql: Unify some tar functionality across different parts - Mailing list pgsql-committers

From Magnus Hagander
Subject pgsql: Unify some tar functionality across different parts
Date
Msg-id E1Tq5aS-00064s-Ap@gemulon.postgresql.org
Whole thread Raw
Responses Re: pgsql: Unify some tar functionality across different parts  (Andrew Dunstan <andrew@dunslane.net>)
List pgsql-committers
Unify some tar functionality across different parts

Move some of the tar functionality that existed mostly duplicated
in both pg_dump and the walsender basebackup functionality into
port/tar.c instead, so it can be used from both. It will also be
used by pg_basebackup in the future, which would've caused a third
copy of it around.

Zoltan Boszormenyi and Magnus Hagander

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/f5d4bdd3a5c1b7987a257b2a64e977501338af0d

Modified Files
--------------
src/backend/replication/basebackup.c |  128 +-----------------------------
src/bin/pg_dump/pg_backup_tar.c      |  105 +------------------------
src/include/port.h                   |    4 +
src/port/Makefile                    |    2 +-
src/port/tar.c                       |  143 ++++++++++++++++++++++++++++++++++
5 files changed, 154 insertions(+), 228 deletions(-)


pgsql-committers by date:

Previous
From: Heikki Linnakangas
Date:
Subject: pgsql: Winflex binary on FTP site doesn't work on 64-bit Windows, updat
Next
From: Magnus Hagander
Date:
Subject: pgsql: Add new file to MSVC build system as well