2

We use the extra "Version" field. I tried to search for version:">4021". But I also got 4021 itself, like if I did version:">=4021". Is there a bug in here? We still use version 7.3.1.

flag

1 Answer

2

The version field is a text field so the comparisons end up being string comparisons, not number comparisons. Also, it looks like the equivalent of a substring search is done on this field. For example, try searching for version:"021" and you'll probably see the same 4021 case.

link|flag
I see. I should have realized that. And the > (or >=) is probably ignored. – Michel de Ruiter Aug 24 2010 at 21:19
version:021 does not work. But version:*021 does. In my case I think I need version:402*. – Michel de Ruiter Aug 26 2010 at 8:09
That's interesting, Michel. The substring match seems to start at the beginning of the string so version:402 might work for you as well... – Ken Morse Aug 26 2010 at 15:28

Your Answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.