Skip to content

Commit

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

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

0 comments on commit ab78ff5

Please sign in to comment.