@Override
public Schema resolve(UpdatableSchema uschema) throws T2DBException {
List<UpdatableSchema> schemaList = getSchemaList(uschema);
// the name will be the name of the consolidated schema
String name = uschema.getName();
Surrogate surrogate = uschema.getSurrogate();
// reverse the list to have the base first
Collections.reverse(schemaList);
UpdatableSchemaImpl result = null;
for (UpdatableSchema schema : schemaList) {
if (result == null) {