diff options
author | Robert Haas <rhaas@postgresql.org> | 2022-08-10 14:03:23 -0400 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2022-08-10 14:03:23 -0400 |
commit | a8c012869763c711abc9085f54b2a100b60a85fa (patch) | |
tree | 1a278296a8f719835afe477ffa43d89c29f0e43b /src/bin | |
parent | 309857f9c1825d0591579579bdde2a8c8bd3e491 (diff) | |
download | postgresql-a8c012869763c711abc9085f54b2a100b60a85fa.tar.gz postgresql-a8c012869763c711abc9085f54b2a100b60a85fa.zip |
Move basebackup code to new directory src/backend/backup
Reviewed by David Steele and Justin Pryzby
Discussion: http://postgr.es/m/CA+TgmoafqboATDSoXHz8VLrSwK_MDhjthK4hEpYjqf9_1Fmczw%40mail.gmail.com
Diffstat (limited to 'src/bin')
-rw-r--r-- | src/bin/pg_basebackup/pg_basebackup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/pg_basebackup/pg_basebackup.c b/src/bin/pg_basebackup/pg_basebackup.c index 5f6bc1c28ac..49fcabbd2c6 100644 --- a/src/bin/pg_basebackup/pg_basebackup.c +++ b/src/bin/pg_basebackup/pg_basebackup.c @@ -28,6 +28,7 @@ #endif #include "access/xlog_internal.h" +#include "backup/basebackup.h" #include "bbstreamer.h" #include "common/compression.h" #include "common/file_perm.h" @@ -37,7 +38,6 @@ #include "fe_utils/recovery_gen.h" #include "getopt_long.h" #include "receivelog.h" -#include "replication/basebackup.h" #include "streamutil.h" #define ERRCODE_DATA_CORRUPTED "XX001" |