pgsql: Move astreamer (except astreamer_inject) to fe_utils.

From: Robert Haas <rhaas(at)postgresql(dot)org>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Move astreamer (except astreamer_inject) to fe_utils.
Date: 2024-08-05 15:57:02
Message-ID: E1sb050-002oPs-46@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Move astreamer (except astreamer_inject) to fe_utils.

This allows the code to be used by other frontend applications.

Amul Sul, reviewed by Sravan Kumar, Andres Freund (whose input
I specifically solicited regarding the meson.build changes),
and me.

Discussion: http://postgr.es/m/CAAJ_b94StvLWrc_p4q-f7n3OPfr6GhL8_XuAg2aAaYZp1tF-nw@mail.gmail.com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/f80b09bac87d6b49f5dbb6131da5fbd9b9773c5c

Modified Files
--------------
meson.build | 2 +-
src/bin/pg_basebackup/Makefile | 7 +------
src/bin/pg_basebackup/astreamer_inject.h | 2 +-
src/bin/pg_basebackup/meson.build | 5 -----
src/fe_utils/Makefile | 5 +++++
src/{bin/pg_basebackup => fe_utils}/astreamer_file.c | 2 +-
src/{bin/pg_basebackup => fe_utils}/astreamer_gzip.c | 2 +-
src/{bin/pg_basebackup => fe_utils}/astreamer_lz4.c | 2 +-
src/{bin/pg_basebackup => fe_utils}/astreamer_tar.c | 2 +-
src/{bin/pg_basebackup => fe_utils}/astreamer_zstd.c | 2 +-
src/fe_utils/meson.build | 5 +++++
src/{bin/pg_basebackup => include/fe_utils}/astreamer.h | 0
12 files changed, 18 insertions(+), 18 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2024-08-05 18:03:48 pgsql: Last-minute updates for release notes.
Previous Message Robert Haas 2024-08-05 14:59:22 pgsql: Move recovery injector astreamer to a separate header file.