mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-27 08:39:28 +08:00
These functions no longer return a value, per complaint from gothic_moth via
Zdenek Kotala.
This commit is contained in:
parent
06da3c570f
commit
97227e9ec0
@ -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,9 +263,9 @@ 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,8 +276,8 @@ 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);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Loading…
Reference in New Issue
Block a user