]> granicus.if.org Git - postgresql/commitdiff
Fix a typo, and remove unnecessary pgstat_report_wait_end().
authorRobert Haas <rhaas@postgresql.org>
Fri, 11 Mar 2016 12:32:59 +0000 (07:32 -0500)
committerRobert Haas <rhaas@postgresql.org>
Fri, 11 Mar 2016 12:34:00 +0000 (07:34 -0500)
Per Amit Kapila.

src/backend/access/transam/xact.c
src/backend/storage/lmgr/lwlock.c

index ab8758661db6977a976ab07b3a27fc568cd26367..8a2cd452056dfd5bd8e4d04f835a27a5a4f6acb4 100644 (file)
@@ -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();
 }
 
index 76d75a914f38acc1116a31146f52cad3c1e064fe..11e4a51adf642c59d1ccbbdcf7deb88e6d40c1ef 100644 (file)
@@ -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)