You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hi, I am having an issue with the JQL:
Scenario: I want to search all related with Pig - P1.0, P2.0, P3.0 ..... - and Tall - TR1.0, TR2.0, TR3.0 ... - release
```
(fixVersion ~ "TR*" OR affectedVersion ~ "TR*" OR fixVersion ~ "P*" OR affectedVersion ~ "P*") AND (labels not in ("tall/release", "pig/release") or labels is EMPTY ) ORDER BY key ASC
```
It works with TR*, but P*. The error returns: Terminal clause [P*] resolves to too many literals which means TR* works, but P*. For now, I do workaround with:
```
(fixVersion ~ "TR*" OR affectedVersion ~ "TR*" OR fixVersion ~ "P1*.*" OR affectedVersion ~ "P1*.*") AND (labels not in ("tall/release", "pig/release") or labels is EMPTY ) ORDER BY key ASC
```
It only works with Pig version 1, not 2 or 3 ....
So can you please give me any advice? Thanks a lot!
I am having a similar problem with trying to use fuzzy searches on fixVersion. I am assuming this is some limitation based on the fuzzy search and that we now have too many versions that match it. I would like to know that for sure though.
Is there anyone who can help me? :| please
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.