最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

jira - JQL Contains ~ operator issue with hyphen - Stack Overflow

programmeradmin3浏览0评论

I'm trying to retrieve all issues containing the summary prefix "issuing-dashboard-ui". I'm running the following query:

project = RELEASE AND status = Done AND summary ~ "issuing-dashboard-ui*" ORDER BY created DESC

Against the following dataset

  • issuing-dashboard-search-system-6.4.3
  • issuing-dashboard-ui-1.98.17
  • issuing-dashboard-api-2.90.4
  • issuing-dashboard-ui-1.98.17

However, I'm retrieving no results.

When I try to replace the hyphens "-" with a single character wildcard "?" such as

project = RELEASE AND status = Done AND summary ~ "issuing?dashboard?ui*" ORDER BY created DESC

I then retrieve all the dataset not filtered for "ui". It looks like my cloud instance of JIRA doesn't support STARTS WITH or LIKE as described in the docs. I've also tried to escape the hyphen but without any luck.

Could you please point me in the right direction? Many thanks for your help.

发布评论

评论列表(0)

  1. 暂无评论