aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/cover/heatmap.go
diff options
context:
space:
mode:
authorTaras Madan <tarasmadan@google.com>2024-12-05 10:08:44 +0100
committerTaras Madan <tarasmadan@google.com>2024-12-12 08:44:14 +0000
commit941924ebb4fc1ba15d5d3f12730ce32d7a6ace5f (patch)
treeb5d43ae7a180c34ceebda49e1eee276c2080fc3f /pkg/cover/heatmap.go
parent035bb8e062dc88e848028048b5805e4c39bcdc47 (diff)
pkg/covermerger: aggregate data per-manager
It enables us to see the manager unique coverage.
Diffstat (limited to 'pkg/cover/heatmap.go')
-rw-r--r--pkg/cover/heatmap.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/cover/heatmap.go b/pkg/cover/heatmap.go
index d4d29fbd9..0d7c93cd5 100644
--- a/pkg/cover/heatmap.go
+++ b/pkg/cover/heatmap.go
@@ -169,7 +169,7 @@ from merge_history
join file_subsystems
on merge_history.namespace = file_subsystems.namespace and files.filepath = file_subsystems.filepath
where
- merge_history.namespace=$1 and dateto=$2 and duration=$3`,
+ merge_history.namespace=$1 and dateto=$2 and duration=$3 and manager='*'`,
Params: map[string]interface{}{
"p1": ns,
"p2": timePeriod.DateTo,