Skip to content

Commit

Permalink
Update query snapshots
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Jun 20, 2024
1 parent ad5d43a commit fc65b23
Showing 1 changed file with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,8 @@
GROUP BY aggregation_target,
entrance_period_start)
WHERE ifNull(greaterOrEquals(steps_completed, 2), 0)
ORDER BY aggregation_target ASC SETTINGS use_query_cache=1) AS source
ORDER BY aggregation_target ASC SETTINGS use_query_cache=1,
query_cache_ttl=600) AS source
INNER JOIN
(SELECT person.id AS id
FROM person
Expand Down Expand Up @@ -313,7 +314,8 @@
GROUP BY aggregation_target,
entrance_period_start)
WHERE and(ifNull(greaterOrEquals(steps_completed, 1), 0), ifNull(less(steps_completed, 3), 0))
ORDER BY aggregation_target ASC SETTINGS use_query_cache=1) AS source
ORDER BY aggregation_target ASC SETTINGS use_query_cache=1,
query_cache_ttl=600) AS source
INNER JOIN
(SELECT person.id AS id
FROM person
Expand Down Expand Up @@ -487,7 +489,8 @@
GROUP BY aggregation_target,
entrance_period_start)
WHERE ifNull(greaterOrEquals(steps_completed, 3), 0)
ORDER BY aggregation_target ASC SETTINGS use_query_cache=1) AS source
ORDER BY aggregation_target ASC SETTINGS use_query_cache=1,
query_cache_ttl=600) AS source
INNER JOIN
(SELECT person.id AS id
FROM person
Expand Down

0 comments on commit fc65b23

Please sign in to comment.