Skip to content

Commit

Permalink
test(sql): Test fix for incorrect running instances count in process …
Browse files Browse the repository at this point in the history
…definition statistics

Related to https://jira.camunda.com/browse/SUPPORT-24279
  • Loading branch information
mboskamp committed Oct 30, 2024
1 parent e32f6d6 commit 2da4f46
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,6 @@
(
select
I.PROC_DEF_ID_
, I.INCIDENT_TYPE_
, count(I.ID_) as INCIDENT_COUNT_
from
${prefix}ACT_RU_INCIDENT I
Expand All @@ -111,7 +110,7 @@
<include refid="org.camunda.bpm.engine.impl.persistence.entity.TenantEntity.queryTenantCheckWithPrefix" />
</where>
group by
I.PROC_DEF_ID_, I.INCIDENT_TYPE_
I.PROC_DEF_ID_
) INC
on
PROCDEF.ID_ = INC.PROC_DEF_ID_
Expand Down

0 comments on commit 2da4f46

Please sign in to comment.