File tree 1 file changed +6
-6
lines changed
src/backend/access/transam
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 8
8
*
9
9
*
10
10
* IDENTIFICATION
11
- * $PostgreSQL: pgsql/src/backend/access/transam/transam.c,v 1.77 2008/10/20 19:18:18 alvherre Exp $
11
+ * $PostgreSQL: pgsql/src/backend/access/transam/transam.c,v 1.78 2008/10/20 20:38:24 alvherre Exp $
12
12
*
13
13
* NOTES
14
14
* This file contains the high level access-method interface to the
@@ -263,9 +263,9 @@ TransactionIdIsKnownCompleted(TransactionId transactionId)
263
263
void
264
264
TransactionIdCommitTree (TransactionId xid , int nxids , TransactionId * xids )
265
265
{
266
- return TransactionIdSetTreeStatus (xid , nxids , xids ,
267
- TRANSACTION_STATUS_COMMITTED ,
268
- InvalidXLogRecPtr );
266
+ TransactionIdSetTreeStatus (xid , nxids , xids ,
267
+ TRANSACTION_STATUS_COMMITTED ,
268
+ InvalidXLogRecPtr );
269
269
}
270
270
271
271
/*
276
276
TransactionIdAsyncCommitTree (TransactionId xid , int nxids , TransactionId * xids ,
277
277
XLogRecPtr lsn )
278
278
{
279
- return TransactionIdSetTreeStatus (xid , nxids , xids ,
280
- TRANSACTION_STATUS_COMMITTED , lsn );
279
+ TransactionIdSetTreeStatus (xid , nxids , xids ,
280
+ TRANSACTION_STATUS_COMMITTED , lsn );
281
281
}
282
282
283
283
/*
You can’t perform that action at this time.
0 commit comments