2017-09-08 25 views
0

다음은 간단한 예입니다 - 두 개의 JIRA 문제가 있습니다. 첫 번째는 /path2/file이고 두 번째는 /이없는 path2입니다. 이 JQL : text ~ path2을 사용하면 두 번째 문제 만 검색 결과에 나타납니다.경로의 문자열을 포함하는 이슈를 찾기 위해 JIRA JQL이 무엇입니까

변경할 수있는 설정, 사용할 수있는 다른 JQL 또는 검색 결과에 첫 번째 문제가 표시되는 다른 트릭이 있습니까?

참고 지금은 최신 JIRA 7.4.4의 로컬 설치를 사용하고 있습니다. 명시 적으로 JIRA를 다시 색인화하여 아무런 차이가 없었습니다. 이 JQL 작동하지 않았다 중 하나 text ~ "path2*" text ~ "path2?"

문자 만 뭔가로 변경 검색어가 실제로 작동하는 경우에하는 것으로 -이 용어에 문제를 찾을 때 폴더/경로/디렉토리

의 일부

업데이트 9 월에 12 :

 
T1 issue contains in description "path2" 
T2 issue contains in description "path2/file" 
T3 issue contains in description "/path2/file" 
T4 issue contains in description "/long/path2/file" 
T5 issue contains in description "path" 
T6 issue contains in description "path/file" 
T7 issue contains in description "/path/file" 
T8 issue contains in description "/long/path/file" 
T9 issue contains in description "/long2/path2/file" 

Issues appearing on JIRA 7.5.0 server (not cloud): 

T1 T2 T3 T4 T5 T6 T7 T8 T9 JQL 
      5 6 7 8 text ~ "path" 
1       text ~ "path?" 
1 2 3  5 6 7 8 text ~ "path*" 
1       text ~ "path2" 
          text ~ "path2?" 
1 2 3     text ~ "path2*" 

Summary - T4, T9 never found. 
T8 found, so text ~ "path*" will match /long/path/file 

Conclusion: the directory delimiter/is a word break (like whitespace) 
only when letters are used (T8), not when letters and numbers (T4, T9). 

답변

0

는 우리에게 그 경로의 정확한 텍스트 표현을 적어주세요 수 있습니까?

방금 ​​시도했습니다 (내 개인 Cloud 인스턴스에서). 나는 설명이 있었다 세 가지 문제를 만들어 :

  • 테스트/경로 2/파일 테스트
  • 테스트 경로 2/파일 테스트
  • 경로 2 테스트

그리고 다음 JQL text ~ "path2*" 그들 모두를 발견

  • 테스트 .