diff options
author | Robert Haas <rhaas@postgresql.org> | 2022-08-10 14:03:09 -0400 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2022-08-10 14:03:09 -0400 |
commit | f88798c098d2afd5223e1ca5c9d107cc18864fcc (patch) | |
tree | cd38f288a93c749cca5f3cfe5467c84a35514438 /contrib/basebackup_to_shell/basebackup_to_shell.c | |
parent | ad3e07c156544f31d02e55e95ba7954ea87a2ee8 (diff) |
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 'contrib/basebackup_to_shell/basebackup_to_shell.c')
-rw-r--r-- | contrib/basebackup_to_shell/basebackup_to_shell.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/basebackup_to_shell/basebackup_to_shell.c b/contrib/basebackup_to_shell/basebackup_to_shell.c index bc754b177af..2099e0f50d8 100644 --- a/contrib/basebackup_to_shell/basebackup_to_shell.c +++ b/contrib/basebackup_to_shell/basebackup_to_shell.c @@ -11,8 +11,8 @@ #include "postgres.h" #include "access/xact.h" +#include "backup/basebackup_target.h" #include "miscadmin.h" -#include "replication/basebackup_target.h" #include "storage/fd.h" #include "utils/acl.h" #include "utils/guc.h" |