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!
What exactly are you providing in your API call? Are you providing a JIRA issue ID for an issue that has associated commits? Is the Stash URL shown in the results correct for your ecosystem as the location where those commits have been made?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.