Filtering on resolution

Martin Buchleitner June 3, 2013

Why do the following queries produce different output:

( resolution != Fixed)

and

( resolution != Fixed or resolution is empty)

the first query does not show unresolved issue - just resolved set with a resolution which is not fixed. This is confusing

3 answers

1 accepted

0 votes
Answer accepted
Christian Czaia _Decadis AG_
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
June 3, 2013

( resolution != Fixed) gives back all issues that have a resolution set (which is NOT "Fixed")

( resolution != Fixed or resolution is empty) basically returns ALL issues that have a different value for resolution other than "Fixed" including null values (no resolution at all)
0 votes
Nic Brough -Adaptavist-
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
June 3, 2013

It's a logical thing. You're thinking in more fuzzy human terms, but you need to be precise when you are talking to computers.

The resolution field is either empty or something. When you say "resolution != Fixed", you're thinking "where the resolution is not fixed", but that's not what you've said, because when the resolution is empty, it doesn't have a value at all. So you can't say it's "not fixed" because it's not a valid comparison.

It's a bit like picking up a bag of flour and saying "is that a cake or a biscuit?". It's neither (although one day it could be either), but your question is excluding the correct answer of "neither".

0 votes
Timothy
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
June 3, 2013

Because "Fixed" is a resolution and there are many other resolutions.

Suggest an answer

Log in or Sign up to answer