summaryrefslogtreecommitdiff
path: root/src/backend/access/heap/heapam.c
diff options
context:
space:
mode:
authorPeter Geoghegan <pg@bowt.ie>2022-02-24 18:31:07 -0800
committerPeter Geoghegan <pg@bowt.ie>2022-02-24 18:31:07 -0800
commitcf879d3069a3f025824b4a3fa3086137b34bad48 (patch)
tree2c9b6cc5f63e907a9241203c7a20233c7e72390e /src/backend/access/heap/heapam.c
parent31d8d4740ffb21c9898a21b5018c31e92af6935d (diff)
Remove unnecessary heap_tuple_needs_freeze argument.
The buffer argument hasn't been used since the function was first added by commit bbb6e559c4. The sibling heap_prepare_freeze_tuple function doesn't have such an argument either. Remove it.
Diffstat (limited to 'src/backend/access/heap/heapam.c')
-rw-r--r--src/backend/access/heap/heapam.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/access/heap/heapam.c b/src/backend/access/heap/heapam.c
index 2240cfd936d..59d43e2ba92 100644
--- a/src/backend/access/heap/heapam.c
+++ b/src/backend/access/heap/heapam.c
@@ -7141,7 +7141,7 @@ heap_tuple_needs_eventual_freeze(HeapTupleHeader tuple)
*/
bool
heap_tuple_needs_freeze(HeapTupleHeader tuple, TransactionId cutoff_xid,
- MultiXactId cutoff_multi, Buffer buf)
+ MultiXactId cutoff_multi)
{
TransactionId xid;