diff options
author | Robert Haas <rhaas@postgresql.org> | 2024-09-27 08:40:24 -0400 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2024-09-27 08:40:24 -0400 |
commit | 8dfd3129027969fdd2d9d294220c867d2efd84aa (patch) | |
tree | 9b5866e22d0105d2fb62cde9599be0b281831469 /src/include/fe_utils | |
parent | 8410f738ad2fd94fc068ce0189e1ae04ef3c12e3 (diff) | |
download | postgresql-8dfd3129027969fdd2d9d294220c867d2efd84aa.tar.gz postgresql-8dfd3129027969fdd2d9d294220c867d2efd84aa.zip |
pg_verifybackup: Verify tar-format backups.
This also works for compressed tar-format backups. However, -n must be
used, because we use pg_waldump to verify WAL, and it doesn't yet know
how to verify WAL that is stored inside of a tarfile.
Amul Sul, reviewed by Sravan Kumar and by me, and revised by me.
Diffstat (limited to 'src/include/fe_utils')
-rw-r--r-- | src/include/fe_utils/simple_list.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/include/fe_utils/simple_list.h b/src/include/fe_utils/simple_list.h index d42ecded8ed..c83ab6f77e4 100644 --- a/src/include/fe_utils/simple_list.h +++ b/src/include/fe_utils/simple_list.h @@ -66,5 +66,6 @@ extern void simple_string_list_destroy(SimpleStringList *list); extern const char *simple_string_list_not_touched(SimpleStringList *list); extern void simple_ptr_list_append(SimplePtrList *list, void *ptr); +extern void simple_ptr_list_destroy(SimplePtrList *list); #endif /* SIMPLE_LIST_H */ |