* 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,
{
Relation rel = vacrel->rel;
PruneFreezeResult presult;
- PruneFreezeParams params = {.relation = rel,.buffer = buf,
- .reason = PRUNE_VACUUM_SCAN,.options = HEAP_PAGE_PRUNE_FREEZE,
- .vistest = vacrel->vistest,.cutoffs = &vacrel->cutoffs
+ PruneFreezeParams params = {
+ .relation = rel,
+ .buffer = buf,
+ .reason = PRUNE_VACUUM_SCAN,
+ .options = HEAP_PAGE_PRUNE_FREEZE,
+ .vistest = vacrel->vistest,
+ .cutoffs = &vacrel->cutoffs,
};
Assert(BufferGetBlockNumber(buf) == blkno);