private Database getDatabase(String database) {
   try {
     return metastore.getDatabase(database);
   } catch (NoSuchObjectException e) {
     throw new SchemaNotFoundException(database);
   }
 }