I am having quite a confusing experience. One of my filters does not work as expected: it yields different results for similarly identical queries. The part of the query which is incosistent is around a custom short test field.
Given that I have 5 tickets with "Issue ID" set to "[UNKNOWN] License BeOpen app/env/lib/python3.11/site-packages/typing_extensions-4.12.1.dist-info/LICENSE", I have different results for different queries:
- "Issue ID[Short text]" ~ "\\[UNKNOWN\\[ License BeOpen app/env/lib/python3.11/site-packages/typing_extensions-4.12.1.dist-i": finds nothing
- "Issue ID[Short text]" ~ "\\[UNKNOWN\\[ License BeOpen app/env/lib/python3.11/site-packages/typing_extensions-4.12.1.dist-in": finds all 5 tickets
- "Issue ID[Short text]" ~ "\\[UNKNOWN\\[ License BeOpen app/env/lib/python3.11/site-packages/typing_extensions-4.12.1.dist-inf": finds nothing
- "Issue ID[Short text]" ~ "\\[UNKNOWN\\[ License BeOpen app/env/lib/python3.11/site-packages/typing_extensions-4.12.1.dist-info": finds all 5 tickets
- "Issue ID[Short text]" ~ "\\[UNKNOWN\\[ License BeOpen app/env/lib/python3.11/site-packages/typing_extensions-4.12.1.dist-info/": finds all 5 tickets
- "Issue ID[Short text]" ~ "\\[UNKNOWN\\[ License BeOpen app/env/lib/python3.11/site-packages/typing_extensions-4.12.1.dist-info/L": finds nothing
Expected result is that all these queries should return the same listing, because all listed conditions are true for all of my tickets.