diff --git a/src/commands/CmdInfo.cpp b/src/commands/CmdInfo.cpp index e6d52d0a6..5795409f6 100644 --- a/src/commands/CmdInfo.cpp +++ b/src/commands/CmdInfo.cpp @@ -373,7 +373,7 @@ int CmdInfo::execute(std::string& output) { // Show any orphaned UDAs, which are identified by not being represented in // the context.columns map. for (auto& att : all) { - if (att.substr(0, 11) != "annotation_" && att.substr(0, 5) != "tags_" && + if (att.substr(0, 11) != "annotation_" && att.substr(0, 4) != "tag_" && att.substr(0, 4) != "dep_" && Context::getContext().columns.find(att) == Context::getContext().columns.end()) { row = view.addRow();