提交 fd608fb2 编写于 作者: S Serge Rider

#375 Hide pseudo columns from autocomplete


Former-commit-id: b5a1bc81
上级 b6a3b2ea
......@@ -524,6 +524,10 @@ public class SQLCompletionProcessor implements IContentAssistProcessor
if (startPart != null && !child.getName().toUpperCase().startsWith(startPart)) {
continue;
}
if (child instanceof DBPHiddenObject && ((DBPHiddenObject) child).isHidden()) {
// Skip hidden
continue;
}
proposals.add(makeProposalsFromObject(monitor, child));
}
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册