Skip to content

Commit

Permalink
fix: fix failing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Benmuiruri committed Mar 18, 2024
1 parent 933d70d commit 20f74b1
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
CREATE VIEW view_apdex_scores AS
CREATE VIEW useview_apdex_scores AS
WITH apdex_telemetry_data AS (
SELECT
substring(metric from '^(.*):apdex:') AS event_category,
Expand All @@ -9,7 +9,7 @@ WITH apdex_telemetry_data AS (
END AS event_type,
SUM(count) AS event_count
FROM
useview_telemetry_metrics
couchdb_users_meta
WHERE metric LIKE '%:apdex:%'
GROUP BY event_category, event_type
),
Expand Down

0 comments on commit 20f74b1

Please sign in to comment.