From 6a24510473729a6e78d2ba7c897ddf6ddeee4ef1 Mon Sep 17 00:00:00 2001 From: Gagan Nagaraj <117705519+gagankonana@users.noreply.github.com> Date: Mon, 9 Sep 2024 05:12:19 -0700 Subject: [PATCH] Exclude attributes starting with tag_ (#3619) * Exclude attributes starting with tag_ * Check only for tag_* --- src/commands/CmdInfo.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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();