This commit is contained in:
Lukas Eder 2019-10-22 10:21:52 +02:00
parent b8ab91eac5
commit 7da503c6de

View File

@ -117,7 +117,8 @@ public class SchemaImpl extends AbstractNamed implements Schema {
}
}
ctx.visit(Tools.getMappedSchema(ctx.configuration(), this).getUnqualifiedName());
Schema mappedSchema = Tools.getMappedSchema(ctx.configuration(), this);
ctx.visit(mappedSchema != null ? mappedSchema.getUnqualifiedName() : getUnqualifiedName());
}
@Override