From 481c76abf4f5dc99af28a799741c324732a299c6 Mon Sep 17 00:00:00 2001 From: Robert Haas Date: Fri, 11 Mar 2016 07:32:59 -0500 Subject: [PATCH] Fix a typo, and remove unnecessary pgstat_report_wait_end(). Per Amit Kapila. --- src/backend/access/transam/xact.c | 3 --- src/backend/storage/lmgr/lwlock.c | 5 ++--- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/src/backend/access/transam/xact.c b/src/backend/access/transam/xact.c index ab8758661d..8a2cd45205 100644 --- a/src/backend/access/transam/xact.c +++ b/src/backend/access/transam/xact.c @@ -4655,9 +4655,6 @@ AbortSubTransaction(void) */ XactReadOnly = s->prevXactReadOnly; - /* Report wait end here, when there is no further possibility of wait */ - pgstat_report_wait_end(); - RESUME_INTERRUPTS(); } diff --git a/src/backend/storage/lmgr/lwlock.c b/src/backend/storage/lmgr/lwlock.c index 76d75a914f..11e4a51adf 100644 --- a/src/backend/storage/lmgr/lwlock.c +++ b/src/backend/storage/lmgr/lwlock.c @@ -760,9 +760,8 @@ GetLWLockIdentifier(uint8 classId, uint16 eventId) /* * It is quite possible that user has registered tranche in one of the - * backends (e.g. by allocation lwlocks in dynamic shared memory) but not - * all of them, so we can't assume the tranche is registered here. - * extension for such cases. + * backends (e.g. by allocating lwlocks in dynamic shared memory) but + * not all of them, so we can't assume the tranche is registered here. */ if (eventId >= LWLockTranchesAllocated || LWLockTrancheArray[eventId]->name == NULL)