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 Mar 19, 2024
1 parent 7604495 commit 591013a
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions posthog/tasks/test/__snapshots__/test_usage_report.ambr
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,11 @@
count(distinct toDate(timestamp), event, cityHash64(distinct_id), cityHash64(uuid)) as count
FROM events
WHERE timestamp between '2022-01-10 00:00:00' AND '2022-01-10 23:59:59'
AND event != '$feature_flag_called'
AND event NOT IN ('survey sent',
AND event NOT IN ('$feature_flag_called',
'survey sent',
'survey shown',
'survey dismissed')
AND NOT startsWith(event, '$$')
GROUP BY team_id
'''
# ---
Expand Down Expand Up @@ -199,10 +200,11 @@
count(1) as count
FROM events
WHERE timestamp between '2022-01-01 00:00:00' AND '2022-01-10 23:59:59'
AND event != '$feature_flag_called'
AND event NOT IN ('survey sent',
AND event NOT IN ('$feature_flag_called',
'survey sent',
'survey shown',
'survey dismissed')
AND NOT startsWith(event, '$$')
GROUP BY team_id
'''
# ---
Expand Down

0 comments on commit 591013a

Please sign in to comment.