Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Summary Search not working as expected

Rahul Mittal
Contributor
March 23, 2020

Hi All,

 

I am trying to list tickets matching certain criteria (as shown in the attachment).

Requirement : List tickets that has word "Production" along with certain other criterias.

Problem: The response also return the tickets which do not have Production

JQL : project in (TEST1) and type = milestone and ('start date' >= 2020-03-01 and 'Start Date' < 2020-04-01) and summary ~ "Production" and resolution = unresolved

Refer attachment

Any suggestions or leads?

 

JIRA_SummarySearchNotWorking.PNG

 

1 answer

0 votes
Hazwan Ariffin
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.
March 23, 2020

Try this

project in (TEST1) and type = milestone and ('start date' >= 2020-03-01 and 'Start Date' < 2020-04-01) and resolution = unresolved and text ~ "\"Production\""

Rahul Mittal
Contributor
March 23, 2020

Tried but still getting some (lesser than earlier) unwanted tickets without "production" in the summary line.

Is it strange or I am using contains (~) incorrectly?

Andrew Laden
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.
March 24, 2020

You are probably running into issues with "Word Stemming"

Take a look at:

https://confluence.atlassian.com/jirasoftwareserver/search-syntax-for-text-fields-939938747.html

You may want to try some other seaches not using ~ but using = with wildcards.

Suggest an answer

Log in or Sign up to answer