diff options
Diffstat (limited to 'src/backend/access/heap/pruneheap.c')
| -rw-r--r-- | src/backend/access/heap/pruneheap.c | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/src/backend/access/heap/pruneheap.c b/src/backend/access/heap/pruneheap.c index 1850476dcd8..0d6311088ea 100644 --- a/src/backend/access/heap/pruneheap.c +++ b/src/backend/access/heap/pruneheap.c @@ -269,9 +269,13 @@ heap_page_prune_opt(Relation relation, Buffer buffer) * cannot safely determine that during on-access pruning with the * current implementation. */ - PruneFreezeParams params = {.relation = relation,.buffer = buffer, - .reason = PRUNE_ON_ACCESS,.options = 0, - .vistest = vistest,.cutoffs = NULL + PruneFreezeParams params = { + .relation = relation, + .buffer = buffer, + .reason = PRUNE_ON_ACCESS, + .options = 0, + .vistest = vistest, + .cutoffs = NULL, }; heap_page_prune_and_freeze(¶ms, &presult, &dummy_off_loc, |
