Comment out xlrec in xact_redo - no support for file unlinking on
authorVadim B. Mikheev <vadim4o@yahoo.com>
Thu, 18 Jan 2001 18:33:45 +0000 (18:33 +0000)
committerVadim B. Mikheev <vadim4o@yahoo.com>
Thu, 18 Jan 2001 18:33:45 +0000 (18:33 +0000)
commit yet.

src/backend/access/transam/xact.c

index e79ada35426e36617e696f1df6a78ba03c70055c..01b4d5643c18fad506b45409c1af03d14f2a2a4b 100644 (file)
@@ -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 */
    }