diff options
Diffstat (limited to 'src/backend/access/transam/xact.c')
-rw-r--r-- | src/backend/access/transam/xact.c | 18 |
1 files changed, 3 insertions, 15 deletions
diff --git a/src/backend/access/transam/xact.c b/src/backend/access/transam/xact.c index 47f998f6ef1..5ecd3c5725b 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.279 2010/01/02 16:57:35 momjian Exp $ + * $PostgreSQL: pgsql/src/backend/access/transam/xact.c,v 1.280 2010/01/09 16:49:27 sriggs Exp $ * *------------------------------------------------------------------------- */ @@ -4404,20 +4404,8 @@ xact_redo_commit(xl_xact_commit *xlrec, TransactionId xid, XLogRecPtr lsn) * maintain the same order of invalidation then release locks * as occurs in . */ - if (xlrec->nmsgs > 0) - { - /* - * Relcache init file invalidation requires processing both - * before and after we send the SI messages. See AtEOXact_Inval() - */ - if (XactCompletionRelcacheInitFileInval(xlrec)) - RelationCacheInitFileInvalidate(true); - - SendSharedInvalidMessages(inval_msgs, xlrec->nmsgs); - - if (XactCompletionRelcacheInitFileInval(xlrec)) - RelationCacheInitFileInvalidate(false); - } + ProcessCommittedInvalidationMessages(inval_msgs, xlrec->nmsgs, + XactCompletionRelcacheInitFileInval(xlrec)); /* * Release locks, if any. We do this for both two phase and normal |