Commit cb0fe79e by Mandar Ambawane Committed by nixonrodrigues

ATLAS-3589 Unable to search typeDefs of category 'Namespace'

parent ea653e03
...@@ -154,6 +154,8 @@ public class FilterUtil { ...@@ -154,6 +154,8 @@ public class FilterUtil {
return atlasType.getTypeCategory() == TypeCategory.ENUM; return atlasType.getTypeCategory() == TypeCategory.ENUM;
case "RELATIONSHIP": case "RELATIONSHIP":
return atlasType.getTypeCategory() == TypeCategory.RELATIONSHIP; return atlasType.getTypeCategory() == TypeCategory.RELATIONSHIP;
case "NAMESPACE":
return atlasType.getTypeCategory() == TypeCategory.NAMESPACE;
default: default:
// This shouldn't have happened // This shouldn't have happened
return false; return false;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment