diff options
author | Robert Haas <rhaas@postgresql.org> | 2023-12-19 15:21:34 -0500 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2023-12-19 15:24:31 -0500 |
commit | aafc07c7a191bc807c77fe2a044006a5db07faba (patch) | |
tree | 9e0d53113d5f9ac5064772e2a5473e8c61844669 /src/bin/pg_verifybackup/pg_verifybackup.c | |
parent | 47f01d727e3a271bbff7d2f9db838e81d27bd495 (diff) | |
download | postgresql-aafc07c7a191bc807c77fe2a044006a5db07faba.tar.gz postgresql-aafc07c7a191bc807c77fe2a044006a5db07faba.zip |
Move src/bin/pg_verifybackup/parse_manifest.c into src/common.
This makes it possible for the code to be easily reused by other
client-side tools, and/or by the server.
Patch by me. Review of this patch in particular by at least Peter
Eisentraut; reviewers for the patch series in general include Dilip
Kumar, Andres Fruend, David Steele, Álvaro Herrera, and Jakub Wartak.
Discussion: http://postgr.es/m/CA+TgmoZ6UGZVnSy5iak6s6+AXu_DewXovDjhLs3-su6nmU_x_g@mail.gmail.com
Diffstat (limited to 'src/bin/pg_verifybackup/pg_verifybackup.c')
-rw-r--r-- | src/bin/pg_verifybackup/pg_verifybackup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/pg_verifybackup/pg_verifybackup.c b/src/bin/pg_verifybackup/pg_verifybackup.c index d921d0f003a..88081f66f76 100644 --- a/src/bin/pg_verifybackup/pg_verifybackup.c +++ b/src/bin/pg_verifybackup/pg_verifybackup.c @@ -20,9 +20,9 @@ #include "common/hashfn.h" #include "common/logging.h" +#include "common/parse_manifest.h" #include "fe_utils/simple_list.h" #include "getopt_long.h" -#include "parse_manifest.h" #include "pgtime.h" /* |