Hello -- I am looking for a way to do something like 'find a list of issues where customfield IN ('value','value')
My custom field is a text field of 255 characters or less
JQL doesn't appear to support this -- is there another way to do it? Maybe by searching directly on JIRA's database? Or a plugin that I am not aware of?
oh! I am running downloadable JIRA 5.2 as a standalone instance
I think I will go with this method -- searching directly on the database seems the fastest and easiest way -- this will prevent having to specify fieldname ~ multiple times
thanks!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Andrew, I believe it's not possible to do that because 255 characteres it's too much to have like an exact value. In fact, I think the only way to check a value in that kind of field would be something like:
"customfield ~ word1"
So you can do something like:
"customfield ~ word1 OR customfield ~ word2"
But I think it's very uncertain.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
That's roughly what I was going to say - the clause looks like "cf ~ value1 OR cf ~ value2" to me.
Or, if it really is an exact phrase, the ~ operator will get immensely close and try to pick up values that are mistyped, which is probably better than a precise match when looking at a raw text field.
Maybe I've misunderstood the question?
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.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.