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/backend/access/transam/xlogrecovery.c | |
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/backend/access/transam/xlogrecovery.c')
-rw-r--r-- | src/backend/access/transam/xlogrecovery.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/access/transam/xlogrecovery.c b/src/backend/access/transam/xlogrecovery.c index 21088e78f61..a59a0e826bb 100644 --- a/src/backend/access/transam/xlogrecovery.c +++ b/src/backend/access/transam/xlogrecovery.c @@ -40,6 +40,7 @@ #include "access/xlogreader.h" #include "access/xlogrecovery.h" #include "access/xlogutils.h" +#include "backup/basebackup.h" #include "catalog/pg_control.h" #include "commands/tablespace.h" #include "common/file_utils.h" @@ -47,7 +48,6 @@ #include "pgstat.h" #include "postmaster/bgwriter.h" #include "postmaster/startup.h" -#include "replication/basebackup.h" #include "replication/walreceiver.h" #include "storage/fd.h" #include "storage/ipc.h" |