Commit 97227e9e authored by Alvaro Herrera's avatar Alvaro Herrera

These functions no longer return a value, per complaint from gothic_moth via

Zdenek Kotala.
parent 06da3c57
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/access/transam/transam.c,v 1.77 2008/10/20 19:18:18 alvherre Exp $ * $PostgreSQL: pgsql/src/backend/access/transam/transam.c,v 1.78 2008/10/20 20:38:24 alvherre Exp $
* *
* NOTES * NOTES
* This file contains the high level access-method interface to the * This file contains the high level access-method interface to the
...@@ -263,7 +263,7 @@ TransactionIdIsKnownCompleted(TransactionId transactionId) ...@@ -263,7 +263,7 @@ TransactionIdIsKnownCompleted(TransactionId transactionId)
void void
TransactionIdCommitTree(TransactionId xid, int nxids, TransactionId *xids) TransactionIdCommitTree(TransactionId xid, int nxids, TransactionId *xids)
{ {
return TransactionIdSetTreeStatus(xid, nxids, xids, TransactionIdSetTreeStatus(xid, nxids, xids,
TRANSACTION_STATUS_COMMITTED, TRANSACTION_STATUS_COMMITTED,
InvalidXLogRecPtr); InvalidXLogRecPtr);
} }
...@@ -276,7 +276,7 @@ void ...@@ -276,7 +276,7 @@ void
TransactionIdAsyncCommitTree(TransactionId xid, int nxids, TransactionId *xids, TransactionIdAsyncCommitTree(TransactionId xid, int nxids, TransactionId *xids,
XLogRecPtr lsn) XLogRecPtr lsn)
{ {
return TransactionIdSetTreeStatus(xid, nxids, xids, TransactionIdSetTreeStatus(xid, nxids, xids,
TRANSACTION_STATUS_COMMITTED, lsn); TRANSACTION_STATUS_COMMITTED, lsn);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment