noreturn.patch

application/octet-stream

Filename: noreturn.patch
Type: application/octet-stream
Part: 0
Message: Re: backup manifests

Patch

Same data as JSON: GET /api/v1/attachments/:id/patch the parsed metadata as JSON — format, series position, per-file stats; never the diff bytes. API reference →
Format: unified
File+
src/bin/pg_verifybackup/parse_manifest.h 2 1
diff --git a/src/bin/pg_verifybackup/parse_manifest.h b/src/bin/pg_verifybackup/parse_manifest.h
index 49254bfb32..07e2397941 100644
--- a/src/bin/pg_verifybackup/parse_manifest.h
+++ b/src/bin/pg_verifybackup/parse_manifest.h
@@ -29,7 +29,8 @@ typedef void (*json_manifest_perwalrange_callback)(JsonManifestParseContext *,
 								 TimeLineID tli,
 								 XLogRecPtr start_lsn, XLogRecPtr end_lsn);
 typedef void (*json_manifest_error_callback)(JsonManifestParseContext *,
-								 char *fmt, ...) pg_attribute_printf(2, 3);
+								 char *fmt, ...) pg_attribute_printf(2, 3)
+								 pg_attribute_noreturn();
 
 struct JsonManifestParseContext
 {