aboutsummaryrefslogtreecommitdiff
path: root/src/include/access/rewriteheap.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/access/rewriteheap.h')
-rw-r--r--src/include/access/rewriteheap.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/include/access/rewriteheap.h b/src/include/access/rewriteheap.h
index e8f53246a81..4f9515d566f 100644
--- a/src/include/access/rewriteheap.h
+++ b/src/include/access/rewriteheap.h
@@ -6,7 +6,7 @@
* Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group
* Portions Copyright (c) 1994-5, Regents of the University of California
*
- * $PostgreSQL: pgsql/src/include/access/rewriteheap.h,v 1.1 2007/04/08 01:26:33 tgl Exp $
+ * $PostgreSQL: pgsql/src/include/access/rewriteheap.h,v 1.2 2007/05/17 15:28:29 alvherre Exp $
*
*-------------------------------------------------------------------------
*/
@@ -20,10 +20,11 @@
typedef struct RewriteStateData *RewriteState;
extern RewriteState begin_heap_rewrite(Relation NewHeap,
- TransactionId OldestXmin, bool use_wal);
+ TransactionId OldestXmin, TransactionId FreezeXid,
+ bool use_wal);
extern void end_heap_rewrite(RewriteState state);
extern void rewrite_heap_tuple(RewriteState state, HeapTuple oldTuple,
- HeapTuple newTuple);
+ HeapTuple newTuple);
extern void rewrite_heap_dead_tuple(RewriteState state, HeapTuple oldTuple);
#endif /* REWRITE_HEAP_H */