1
0
mirror of https://github.com/postgres/postgres.git synced 2025-12-19 17:02:53 +03:00

Split PruneFreezeParams initializers to one field per line

This conforms more closely with the style of other struct initializers
in the code base. Initializing multiple fields on a single line is
unpopular in part because pgindent won't permit a space after the comma
before the next field's period.

Author: Melanie Plageman <melanieplageman@gmail.com>
Reported-by: Dagfinn Ilmari Mannsåker <ilmari@ilmari.org>
Discussion: https://postgr.es/m/87see87fnq.fsf%40wibble.ilmari.org
This commit is contained in:
Melanie Plageman
2025-11-20 17:36:40 -05:00
parent 5d4dc112c7
commit 1e14edcea5
2 changed files with 14 additions and 6 deletions

View File

@@ -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(&params, &presult, &dummy_off_loc,