diff options
author | Vadim B. Mikheev | 2001-01-18 18:33:45 +0000 |
---|---|---|
committer | Vadim B. Mikheev | 2001-01-18 18:33:45 +0000 |
commit | 0a1276700428e93dfde8112e204abbca7f35bea8 (patch) | |
tree | b673f600dcd15aa41e2b2b14f3d8bc80bfdc39b0 /src/backend/access | |
parent | af8630f26a82e31c6d09307b558854a438578df0 (diff) |
Comment out xlrec in xact_redo - no support for file unlinking on
commit yet.
Diffstat (limited to 'src/backend/access')
-rw-r--r-- | src/backend/access/transam/xact.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/backend/access/transam/xact.c b/src/backend/access/transam/xact.c index e79ada35426..01b4d5643c1 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.93 2001/01/14 05:08:14 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/access/transam/xact.c,v 1.94 2001/01/18 18:33:45 vadim Exp $ * * NOTES * Transaction aborts can now occur two ways: @@ -1737,8 +1737,6 @@ xact_redo(XLogRecPtr lsn, XLogRecord *record) if (info == XLOG_XACT_COMMIT) { - xl_xact_commit *xlrec = (xl_xact_commit*) XLogRecGetData(record); - TransactionIdCommit(record->xl_xid); /* SHOULD REMOVE FILES OF ALL DROPPED RELATIONS */ } |