private void dumpINList()
throws DatabaseException {
EnvironmentImpl envImpl = DbInternal.envGetEnvironmentImpl(env);
INList inList = envImpl.getInMemoryINs();
inList.latchMajor();
try {
Iterator iter = inList.iterator();
while (iter.hasNext()) {
IN in = (IN) iter.next();
System.out.println("in nodeId=" + in.getNodeId());