Skip to content

Commit

Permalink
Add transaction name to record count
Browse files Browse the repository at this point in the history
  • Loading branch information
yamelsenih committed Oct 18, 2024
1 parent a635359 commit 23bfff5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ private ReportInfo get(String transactionName) {
.buildQuery()
;
// Count
int count = CountUtil.countRecords(queryDefinition.getCompleteQueryCount(), format.getTableName(), queryDefinition.getParameters());
int count = CountUtil.countRecords(queryDefinition.getCompleteQueryCount(), format.getTableName(), queryDefinition.getParameters(), transactionName);
ReportInfo reportInfo = ReportInfo.newInstance(format, queryDefinition)
.withReportViewId(getReportViewId())
.withInstanceId(getInstanceId())
Expand Down

0 comments on commit 23bfff5

Please sign in to comment.