pgsql: Move tar function headers to pgtar.h - Mailing list pgsql-committers

From Magnus Hagander
Subject pgsql: Move tar function headers to pgtar.h
Date
Msg-id E1TqU8F-0005Aj-NB@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Move tar function headers to pgtar.h

This makes it possible to include them only where they are used, so
we can avoid the conflict of the uid_t and gid_t datatypes that happened
in plperl (since plperl doesn't need the tar functions)

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/794397ae1d1c6d33d11a9b0951a420c2082bcd6c

Modified Files
--------------
src/backend/replication/basebackup.c |    1 +
src/bin/pg_dump/pg_backup_tar.c      |    1 +
src/include/pgtar.h                  |   15 +++++++++++++++
src/include/port.h                   |    4 ----
src/port/tar.c                       |    1 +
5 files changed, 18 insertions(+), 4 deletions(-)


pgsql-committers by date:

Previous
From: Alvaro Herrera
Date:
Subject: pgsql: Make sure MaxBackends is always set
Next
From: Magnus Hagander
Date:
Subject: Re: pgsql: Unify some tar functionality across different parts