diff options
Diffstat (limited to 'src/backend/access/transam/xact.c')
-rw-r--r-- | src/backend/access/transam/xact.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/access/transam/xact.c b/src/backend/access/transam/xact.c index 7bb7804dabb..081479a6667 100644 --- a/src/backend/access/transam/xact.c +++ b/src/backend/access/transam/xact.c @@ -10,7 +10,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/access/transam/xact.c,v 1.294 2010/07/23 00:43:00 rhaas Exp $ + * $PostgreSQL: pgsql/src/backend/access/transam/xact.c,v 1.295 2010/07/29 22:27:27 sriggs Exp $ * *------------------------------------------------------------------------- */ @@ -1086,7 +1086,7 @@ RecordTransactionCommit(void) * Report the latest async commit LSN, so that the WAL writer knows to * flush this commit. */ - XLogSetAsyncCommitLSN(XactLastRecEnd); + XLogSetAsyncXactLSN(XactLastRecEnd); /* * We must not immediately update the CLOG, since we didn't flush the @@ -1384,7 +1384,7 @@ RecordTransactionAbort(bool isSubXact) * problems occur at that point. */ if (!isSubXact) - XLogSetAsyncCommitLSN(XactLastRecEnd); + XLogSetAsyncXactLSN(XactLastRecEnd); /* * Mark the transaction aborted in clog. This is not absolutely necessary |