We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e93ef6a commit 30dcb50Copy full SHA for 30dcb50
src/sentry/search/events/filter.py
@@ -544,7 +544,11 @@ def convert_search_filter_to_snuba_query(
544
return None
545
elif name in key_conversion_map:
546
return key_conversion_map[name](search_filter, name, params)
547
- elif name in ARRAY_FIELDS and search_filter.value.is_wildcard():
+ elif (
548
+ name in ARRAY_FIELDS
549
+ and search_filter.value.is_wildcard()
550
+ and not search_filter.value.is_str_sequence()
551
+ ):
552
# Escape and convert meta characters for LIKE expressions.
553
raw_value = search_filter.value.raw_value
554
assert isinstance(raw_value, str), raw_value
0 commit comments