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 50f0c86 commit 01f8433Copy full SHA for 01f8433
src/sentry/search/eap/occurrences/search_executor.py
@@ -173,11 +173,7 @@ def _format_single_value(value: str | int | float | datetime) -> str:
173
174
175
def _format_string_value(s: str) -> str:
176
- # Wildcard values pass through as-is for the SearchResolver to handle
177
- if "*" in s:
178
- return s
179
-
180
- # Quote strings containing spaces or special characters
+ # Quote strings containing spaces or special characters.
181
if " " in s or '"' in s or "," in s or "(" in s or ")" in s:
182
escaped = s.replace("\\", "\\\\").replace('"', '\\"')
183
return f'"{escaped}"'
0 commit comments