358359360361362363364365366367368
if (!lobUsageCount.isEmpty()) { Iterator it = lobUsageCount.keySet().iterator(); while (it.hasNext()) { long lobID = it.nextLong(); int delta = lobUsageCount.get(lobID); database.lobManager.adjustUsageCount(lobID, delta - 1); }
372373374375376377378379380381382
} i = scsMap.keySet().iterator(); while (i.hasNext()) { csid = i.nextLong(); int usecount = useMap.get(csid, 1) - 1; if (usecount == 0) { Statement cs = (Statement) csidMap.remove(csid);