diff options
author | Tomas Vondra | 2025-03-29 15:42:13 +0000 |
---|---|---|
committer | Tomas Vondra | 2025-03-29 15:47:44 +0000 |
commit | ec4327d106be745534592e8aff14effb716f4dc9 (patch) | |
tree | 318b572069784d31d65b496de68a370ad499731d | |
parent | 116e851db5b3e51c962cc3468ba3055291cd8697 (diff) |
amcheck: Fix indentation in verify_gin.c
I forgot to reindent the code after a couple last-minute adjustments
just before committing 14ffaece0fb53fed8ddbc46d2b353e1c4834863a.
Discussion: https://postgr.es/m/45AC9B0A-2B45-40EE-B08F-BDCF5739D1E1%40yandex-team.ru
-rw-r--r-- | contrib/amcheck/verify_gin.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/contrib/amcheck/verify_gin.c b/contrib/amcheck/verify_gin.c index 670f53637d4..b752448e798 100644 --- a/contrib/amcheck/verify_gin.c +++ b/contrib/amcheck/verify_gin.c @@ -281,9 +281,10 @@ gin_check_posting_tree_parent_keys_consistency(Relation rel, BlockNumber posting bound = *GinDataPageGetRightBound(page); /* - * Gin page right bound has a sane value only when not a highkey on - * the rightmost page (at a given level). For the rightmost page does - * not store the highkey explicitly, and the value is infinity. + * Gin page right bound has a sane value only when not a highkey + * on the rightmost page (at a given level). For the rightmost + * page does not store the highkey explicitly, and the value is + * infinity. */ if (ItemPointerIsValid(&stack->parentkey) && rightlink != InvalidBlockNumber && @@ -531,8 +532,8 @@ gin_check_parent_keys_consistency(Relation rel, * for high key on rightmost page, as this key is not really * stored explicitly. * - * Also make sure to not compare entries for different attnums, which - * may be stored on the same page. + * Also make sure to not compare entries for different attnums, + * which may be stored on the same page. */ if (i != FirstOffsetNumber && attnum == prev_attnum && stack->blkno != GIN_ROOT_BLKNO && !(i == maxoff && rightlink == InvalidBlockNumber)) |