mirror of
https://github.com/postgres/postgres.git
synced 2025-10-22 14:32:25 +03:00
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.
This commit is contained in:
@@ -168,7 +168,7 @@ extern bool heap_freeze_tuple(HeapTupleHeader tuple,
|
||||
TransactionId relfrozenxid, TransactionId relminmxid,
|
||||
TransactionId cutoff_xid, TransactionId cutoff_multi);
|
||||
extern bool heap_tuple_needs_freeze(HeapTupleHeader tuple, TransactionId cutoff_xid,
|
||||
MultiXactId cutoff_multi, Buffer buf);
|
||||
MultiXactId cutoff_multi);
|
||||
extern bool heap_tuple_needs_eventual_freeze(HeapTupleHeader tuple);
|
||||
|
||||
extern void simple_heap_insert(Relation relation, HeapTuple tup);
|
||||
|
Reference in New Issue
Block a user