我有一个JIRA问题列表,其中有一个或多个提交:
..。
其中n,m,y >= 1
使用坩埚,我试图为J1、.、Jk (或者c11、.、cky )创建评论,因为如果坩埚评论的数量大于JIRA问题的数量,这是可以的。
为了实现这一点,我希望看到使用EyeQL --这是没有的提交--创建的审查(不一定是关闭的)。
如果我运行以下查询:
select ...
from ...
where
...
and not reviewed
group by ...
return ...它只返回没有“完整”评审的提交。但我只想看到没有“评审”(不管其状态如何)的提交。
我怎样才能达到这种行为呢?
我想要像and doesn't have any created review这样的东西,而不是and not reviewed。
发布于 2015-03-20 12:32:40
使用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有关示例的完整语法说明,请参见EyeQL参考。
https://stackoverflow.com/questions/29140479
复制相似问题