/** Set the mapping tree from the log. Called during recovery. */
  public void readMapTreeFromLog(long rootLsn) throws DatabaseException {

    dbMapTree = (DbTree) logManager.get(rootLsn);
    dbMapTree.setEnvironmentImpl(this);

    /* Set the map tree root */
    mapTreeRootLsn = rootLsn;
  }