pgsql: Move frontend-side archive APIs from src/common/ to src/fe_utils

From: Michael Paquier <michael(at)paquier(dot)xyz>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Move frontend-side archive APIs from src/common/ to src/fe_utils
Date: 2020-06-11 06:49:16
Message-ID: E1jjH1Y-0005V4-Kc@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Move frontend-side archive APIs from src/common/ to src/fe_utils/

fe_archive.c was compiled only for the frontend in src/common/, but as
it will never share anything with the backend, it makes most sense to
move this file to src/fe_utils/.

Reported-by: Peter Eisentraut
Discussion: https://postgr.es/m/e9766d71-8655-ac86-bdf6-77e0e7169977@2ndquadrant.com
Backpatch-through: 13

Branch
------
REL_13_STABLE

Details
-------
https://git.postgresql.org/pg/commitdiff/8d8b89266ca0328d78df319bacd1e809631f2acc

Modified Files
--------------
src/bin/pg_rewind/parsexlog.c | 2 +-
src/common/Makefile | 1 -
src/fe_utils/Makefile | 1 +
src/{common/fe_archive.c => fe_utils/archive.c} | 10 +++-------
src/include/{common/fe_archive.h => fe_utils/archive.h} | 4 ++--
src/tools/msvc/Mkvcbuild.pm | 8 ++++----
6 files changed, 11 insertions(+), 15 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Peter Eisentraut 2020-06-11 09:31:53 pgsql: Remove deprecated syntax from CREATE/DROP LANGUAGE
Previous Message Peter Eisentraut 2020-06-11 06:47:30 pgsql: Fold AlterForeignTableStmt into AlterTableStmt