Tom has asked you why the numbers returned by his searches are not right. He shows you three JQL queries:
How can you fix this?
Tom has asked you why the numbers returned by his searches are not right. He shows you three JQL queries:
How can you fix this?
The discrepancy in the numbers is due to the exclusion of issues with empty fixVersion fields in the third query. When you query fixVersion != 1.1.0, it returns results where the fixVersion is explicitly set to a value other than 1.1.0 but does not account for issues where the fixVersion is empty. By using the query project = "Cake Baking" and (fixVersion is empty or fixVersion != 1.1.0), you include issues without any fixVersion specified, which fixes the count discrepancy.
It is B, you need a FixVersion is EMPTY clause to catch all the tickets
I chose B
"B" - No question here. it's B
B Actually when you say fixversion != xyz, then first it will search the issues contains fixversion and then it will filter out from that no in xyz, so empty ones will not be listed.
B, Actually when you say fixversion != xyz, then first it will search the issues contains fixversion and then it will filter out from that no in xyz, so empty ones will not be listed.
The answers I chose were C
The correct answer is B