]> granicus.if.org Git - postgresql/commitdiff
fix ReplicationSlotsCountDBSlots for dropping unrelated databases
authorBruce Momjian <bruce@momjian.us>
Fri, 7 Mar 2014 16:42:18 +0000 (11:42 -0500)
committerBruce Momjian <bruce@momjian.us>
Fri, 7 Mar 2014 16:42:18 +0000 (11:42 -0500)
YAMAMOTO Takashi

src/backend/replication/slot.c

index 45ed7e40e894f9a4831b30f8e016766a3071c5a7..76e5573660511bd08281017588e80d13e5079537 100644 (file)
@@ -727,6 +727,7 @@ ReplicationSlotsCountDBSlots(Oid dboid, int *nslots, int *nactive)
 
                /* not database specific, skip */
                if (s->data.database == InvalidOid)
+                       continue;
 
                /* not our database, skip */
                if (s->data.database != dboid)