private KeyspaceMetadata getCheckedKeyspaceMetadata(String schema)
throws SchemaNotFoundException
{
KeyspaceMetadata meta = session.getCluster().getMetadata().getKeyspace(schema);
if (meta == null) {
throw new SchemaNotFoundException(schema);
}
return meta;
}