我有一个 JIRA 问题列表,其中包含一个或多个提交:
...
其中n,m,y> = 1
使用 Crucible 我试图为J1,...,Jk创建评论(或者对于c11,...,cky - 因为如果数字可以,那就好了Crucible评论的评论大于JIRA评论的数量。)
为了实现这一目标,我希望使用 EyeQL ,这是提交而不创建审核(不一定已关闭)。
如果我运行以下查询:
select ...
from ...
where
...
and not reviewed
group by ...
return ...
它只返回没有"完成"的提交。评论。但我希望只看到那些没有“评论”的提交。 (无论其状态如何)。
我该如何实现这种行为?
我想要and doesn't have any created review
而不是and not reviewed
。
答案 0 :(得分:4)
使用not in any review
条款应该有效,即:
select revisions from dir "/" where (not in any review) order by date desc group by changeset return path, revision, author, date, csid
有关示例的完整语法描述,请参阅the EyeQL reference。