diff options
author | Bruce Momjian | 2007-11-15 22:25:18 +0000 |
---|---|---|
committer | Bruce Momjian | 2007-11-15 22:25:18 +0000 |
commit | f6e8730d11ddfc720eda1dde23794d262ad8cc08 (patch) | |
tree | 1fa229dc473a3e7c075099e491d822a4d50e6d0e /src/backend/access/heap/pruneheap.c | |
parent | da0b2cdff893512e01cd175eb2e0e831d2fa559e (diff) |
Re-run pgindent with updated list of typedefs. (Updated README should
avoid this problem in the future.)
Diffstat (limited to 'src/backend/access/heap/pruneheap.c')
-rw-r--r-- | src/backend/access/heap/pruneheap.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/backend/access/heap/pruneheap.c b/src/backend/access/heap/pruneheap.c index 067b23f24cc..516eec3149b 100644 --- a/src/backend/access/heap/pruneheap.c +++ b/src/backend/access/heap/pruneheap.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/access/heap/pruneheap.c,v 1.4 2007/11/15 21:14:32 momjian Exp $ + * $PostgreSQL: pgsql/src/backend/access/heap/pruneheap.c,v 1.5 2007/11/15 22:25:15 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -75,11 +75,11 @@ heap_page_prune_opt(Relation relation, Buffer buffer, TransactionId OldestXmin) * fill-factor target (but not less than 10%). * * Checking free space here is questionable since we aren't holding any - * lock on the buffer; in the worst case we could get a bogus answer. - * It's unlikely to be *seriously* wrong, though, since reading either - * pd_lower or pd_upper is probably atomic. Avoiding taking a lock seems - * better than sometimes getting a wrong answer in what is after all just - * a heuristic estimate. + * lock on the buffer; in the worst case we could get a bogus answer. It's + * unlikely to be *seriously* wrong, though, since reading either pd_lower + * or pd_upper is probably atomic. Avoiding taking a lock seems better + * than sometimes getting a wrong answer in what is after all just a + * heuristic estimate. */ minfree = RelationGetTargetPageFreeSpace(relation, HEAP_DEFAULT_FILLFACTOR); |