Commit 97b5565d by Jayendra Parab Committed by Nikhil Bonte

ATLAS-4055 Basic search doesn't work if the search text has special characters

parent 5373cde5
......@@ -1057,6 +1057,24 @@ public class AtlasStructType extends AtlasType {
switch (c) {
case '@':
case ' ':
case '+':
case '-':
case '&':
case '|':
case '!':
case '(':
case ')':
case '{':
case '}':
case '[':
case ']':
case '^':
case '"':
case '~':
case '?':
case ':':
case '\\':
case '/':
return true;
}
......
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