aboutsummaryrefslogtreecommitdiff
path: root/src/backend/access/heap/rewriteheap.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/backend/access/heap/rewriteheap.c')
-rw-r--r--src/backend/access/heap/rewriteheap.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/backend/access/heap/rewriteheap.c b/src/backend/access/heap/rewriteheap.c
index 31b2b678b6c..9a8f05d9331 100644
--- a/src/backend/access/heap/rewriteheap.c
+++ b/src/backend/access/heap/rewriteheap.c
@@ -335,13 +335,8 @@ rewrite_heap_tuple(RewriteState state,
/*
* While we have our hands on the tuple, we may as well freeze any
* very-old xmin or xmax, so that future VACUUM effort can be saved.
- *
- * Note we abuse heap_freeze_tuple() a bit here, since it's expecting to
- * be given a pointer to a tuple in a disk buffer. It happens though that
- * we can get the right things to happen by passing InvalidBuffer for the
- * buffer.
*/
- heap_freeze_tuple(new_tuple->t_data, state->rs_freeze_xid, InvalidBuffer);
+ heap_freeze_tuple(new_tuple->t_data, state->rs_freeze_xid);
/*
* Invalid ctid means that ctid should point to the tuple itself. We'll