[jOOQ/jOOQ#9386] Avoid NPE
This commit is contained in:
parent
b8ab91eac5
commit
7da503c6de
@ -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
|
||||
|
||||
Loading…
Reference in New Issue
Block a user