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 fc65b23 commit 1947ea7
Show file tree
Hide file tree
Showing 5 changed files with 110 additions and 55 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,8 @@
HAVING ifNull(equals(steps, max_steps), isNull(steps)
and isNull(max_steps)))
WHERE ifNull(in(steps, [2, 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 argMax(person.created_at, person.version) AS created_at,
person.id AS id
Expand Down Expand Up @@ -604,7 +605,8 @@
HAVING ifNull(equals(steps, max_steps), isNull(steps)
and isNull(max_steps)))
WHERE ifNull(in(steps, [1, 2, 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 argMax(person.created_at, person.version) AS created_at,
person.id AS id
Expand Down Expand Up @@ -723,7 +725,8 @@
HAVING ifNull(equals(steps, max_steps), isNull(steps)
and isNull(max_steps)))
WHERE ifNull(in(steps, [2, 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 argMax(person.created_at, person.version) AS created_at,
person.id AS id
Expand Down Expand Up @@ -842,7 +845,8 @@
HAVING ifNull(equals(steps, max_steps), isNull(steps)
and isNull(max_steps)))
WHERE ifNull(in(steps, [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 argMax(person.created_at, person.version) AS created_at,
person.id AS id
Expand Down
Loading

0 comments on commit 1947ea7

Please sign in to comment.