v30-0001-A-tiny-nitpicky-tweak-to-beautify-the-Amcheck-in.patch

application/octet-stream

Filename: v30-0001-A-tiny-nitpicky-tweak-to-beautify-the-Amcheck-in.patch
Type: application/octet-stream
Part: 0
Message: Re: Amcheck verification of GiST and GIN

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: format-patch
Series: patch v30-0001
Subject: A tiny nitpicky tweak to beautify the Amcheck interiors.
File+
contrib/amcheck/verify_nbtree.c 1 1
From e78bc24a3a355c5731cb677b89456ceb9fbd9b55 Mon Sep 17 00:00:00 2001
From: reshke kirill <reshke@double.cloud>
Date: Tue, 26 Nov 2024 05:32:27 +0000
Subject: [PATCH v30 1/5] A tiny nitpicky tweak to beautify the Amcheck
 interiors.

The heaptuplespresent field in BtreeCheckState was not previously
adequately documented. To clarify the meaning of this field, the comment was changed.
---
 contrib/amcheck/verify_nbtree.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/contrib/amcheck/verify_nbtree.c b/contrib/amcheck/verify_nbtree.c
index ffe4f721672..c76349bf436 100644
--- a/contrib/amcheck/verify_nbtree.c
+++ b/contrib/amcheck/verify_nbtree.c
@@ -124,7 +124,7 @@ typedef struct BtreeCheckState
 
 	/* Bloom filter fingerprints B-Tree index */
 	bloom_filter *filter;
-	/* Debug counter */
+	/* Debug counter for reporting percentage of work already done */
 	int64		heaptuplespresent;
 } BtreeCheckState;
 
-- 
2.34.1