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

#2149 DB2: show aliases in auto-completion

上级 77995b67
......@@ -255,9 +255,12 @@ public class DB2Schema extends DB2GlobalObject implements DBSSchema, DBPRefresha
}
@Override
public DB2TableBase getChild(@NotNull DBRProgressMonitor monitor, @NotNull String childName) throws DBException
public DBSObject getChild(@NotNull DBRProgressMonitor monitor, @NotNull String childName) throws DBException
{
DB2TableBase child = tableCache.getObject(monitor, this, childName);
DBSObject child = tableCache.getObject(monitor, this, childName);
if (child == null) {
child = aliasCache.getObject(monitor, this, childName);
}
if (child == null) {
child = viewCache.getObject(monitor, this, childName);
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册