]> git.ipfire.org Git - thirdparty/postgresql.git/commitdiff
Re-pgindent brin.c.
authorNathan Bossart <nathan@postgresql.org>
Tue, 21 Oct 2025 14:56:26 +0000 (09:56 -0500)
committerNathan Bossart <nathan@postgresql.org>
Tue, 21 Oct 2025 14:56:26 +0000 (09:56 -0500)
Backpatch-through: 13

src/backend/access/brin/brin.c

index d25cf3b5adb57cd90312d024bc0d1955d0af3006..3f6c744dcb1beda3569e0fb44b74a955e5874116 100644 (file)
@@ -479,7 +479,7 @@ bringetbitmap(IndexScanDesc scan, TIDBitmap *tbm)
 
                MemoryContextResetAndDeleteChildren(perRangeCxt);
 
-               tup = brinGetTupleForHeapBlock(opaque->bo_rmAccess, (BlockNumber ) heapBlk, &buf,
+               tup = brinGetTupleForHeapBlock(opaque->bo_rmAccess, (BlockNumber) heapBlk, &buf,
                                                                           &off, &size, BUFFER_LOCK_SHARE,
                                                                           scan->xs_snapshot);
                if (tup)
@@ -585,7 +585,7 @@ bringetbitmap(IndexScanDesc scan, TIDBitmap *tbm)
                /* add the pages in the range to the output bitmap, if needed */
                if (addrange)
                {
-                       uint64 pageno;
+                       uint64          pageno;
 
                        for (pageno = heapBlk;
                                 pageno <= Min(nblocks, heapBlk + opaque->bo_pagesPerRange) - 1;