aboutsummaryrefslogtreecommitdiff
path: root/src/backend/catalog/heap.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/backend/catalog/heap.c')
-rw-r--r--src/backend/catalog/heap.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/backend/catalog/heap.c b/src/backend/catalog/heap.c
index f1e3ee2a1ef..cbf05acfb83 100644
--- a/src/backend/catalog/heap.c
+++ b/src/backend/catalog/heap.c
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/backend/catalog/heap.c,v 1.322 2007/06/03 22:16:02 petere Exp $
+ * $PostgreSQL: pgsql/src/backend/catalog/heap.c,v 1.323 2007/09/08 20:31:14 tgl Exp $
*
*
* INTERFACE ROUTINES
@@ -704,10 +704,7 @@ AddNewRelationTuple(Relation pg_class_desc,
* We know that no xacts older than RecentXmin are still running,
* so that will do.
*/
- if (!IsBootstrapProcessingMode())
- new_rel_reltup->relfrozenxid = RecentXmin;
- else
- new_rel_reltup->relfrozenxid = FirstNormalTransactionId;
+ new_rel_reltup->relfrozenxid = RecentXmin;
}
else
{