summaryrefslogtreecommitdiff
path: root/src/backend/access
diff options
context:
space:
mode:
authorTomas Vondra2023-11-26 20:35:32 +0000
committerTomas Vondra2023-11-26 20:35:32 +0000
commitb2caf7c0e1ebada614b6aa3004d826080a07e7e4 (patch)
tree79904c7dc3b710d0eb404232e96286aa385f0d17 /src/backend/access
parent86b64bafc19c4c60136a4038d2a8d1e6eecc59f2 (diff)
Fix brin.c indentation issues introduced by c1ec02be1d
Per buildfarm member koel.
Diffstat (limited to 'src/backend/access')
-rw-r--r--src/backend/access/brin/brin.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/backend/access/brin/brin.c b/src/backend/access/brin/brin.c
index a5f68f67b74..4f2dfdd17b9 100644
--- a/src/backend/access/brin/brin.c
+++ b/src/backend/access/brin/brin.c
@@ -66,7 +66,7 @@ typedef struct BrinInsertState
{
BrinRevmap *bis_rmAccess;
BrinDesc *bis_desc;
- BlockNumber bis_pages_per_range;
+ BlockNumber bis_pages_per_range;
} BrinInsertState;
/*
@@ -360,6 +360,7 @@ brininsertcleanup(IndexInfo *indexInfo)
BrinInsertState *bistate = (BrinInsertState *) indexInfo->ii_AmCache;
Assert(bistate);
+
/*
* Clean up the revmap. Note that the brinDesc has already been cleaned up
* as part of its own memory context.