提交 e40d0a42 编写于 作者: S serge-rider

NPE fix

上级 39cb4686
......@@ -672,7 +672,7 @@ public class PostgreDatabase extends JDBCRemoteInstance<PostgreDataSource>
@Nullable
@Override
public PostgreSchema getDefaultObject() {
return schemaCache.getCachedObject(activeSchemaName);
return activeSchemaName == null ? null : schemaCache.getCachedObject(activeSchemaName);
}
@Override
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册