diff options
Diffstat (limited to 'src/backend/access/transam/xact.c')
-rw-r--r-- | src/backend/access/transam/xact.c | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/src/backend/access/transam/xact.c b/src/backend/access/transam/xact.c index cd20e231ecb..d6551cc9c9c 100644 --- a/src/backend/access/transam/xact.c +++ b/src/backend/access/transam/xact.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/access/transam/xact.c,v 1.66 2000/06/08 22:36:54 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/access/transam/xact.c,v 1.67 2000/06/18 22:43:51 tgl Exp $ * * NOTES * Transaction aborts can now occur two ways: @@ -878,14 +878,6 @@ StartTransaction() AtStart_Locks(); AtStart_Memory(); - /* -------------- - initialize temporary relations list - the tempRelList is a list of temporary relations that - are created in the course of the transactions - they need to be destroyed properly at the end of the transactions - */ - InitNoNameRelList(); - /* ---------------- * Tell the trigger manager to we're starting a transaction * ---------------- @@ -960,7 +952,6 @@ CommitTransaction() AtCommit_Notify(); CloseSequences(); - DropNoNameRels(); AtEOXact_portals(); RecordTransactionCommit(); @@ -1056,7 +1047,6 @@ AbortTransaction() CommonSpecialPortalClose(); RecordTransactionAbort(); RelationPurgeLocalRelation(false); - DropNoNameRels(); invalidate_temp_relations(); AtEOXact_nbtree(); AtAbort_Cache(); |