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 Oct 30, 2024
1 parent bf99373 commit 994d996
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions posthog/hogql/functions/test/__snapshots__/test_cohort.ambr
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@

SELECT events.event AS event
FROM events
WHERE and(equals(events.team_id, 420), in(events.person_id, (
WHERE and(equals(events.team_id, 2), in(events.person_id, (
SELECT cohortpeople.person_id AS person_id
FROM cohortpeople
WHERE and(equals(cohortpeople.team_id, 420), equals(cohortpeople.cohort_id, XX))
WHERE and(equals(cohortpeople.team_id, 2), equals(cohortpeople.cohort_id, XX))
GROUP BY cohortpeople.person_id, cohortpeople.cohort_id, cohortpeople.version
HAVING ifNull(greater(sum(cohortpeople.sign), 0), 0))), equals(events.event, %(hogql_val_0)s))
LIMIT 100
Expand All @@ -33,10 +33,10 @@

SELECT events.event AS event
FROM events
WHERE and(equals(events.team_id, 420), in(events.person_id, (
WHERE and(equals(events.team_id, 2), in(events.person_id, (
SELECT person_static_cohort.person_id AS person_id
FROM person_static_cohort
WHERE and(equals(person_static_cohort.team_id, 420), equals(person_static_cohort.cohort_id, XX)))))
WHERE and(equals(person_static_cohort.team_id, 2), equals(person_static_cohort.cohort_id, XX)))))
LIMIT 100
SETTINGS readonly=2, max_execution_time=60, allow_experimental_object_type=1, format_csv_allow_double_quotes=0, max_ast_elements=4000000, max_expanded_ast_elements=4000000, max_bytes_before_external_group_by=0

Expand All @@ -57,10 +57,10 @@

SELECT events.event AS event
FROM events
WHERE and(equals(events.team_id, 420), in(events.person_id, (
WHERE and(equals(events.team_id, 2), in(events.person_id, (
SELECT person_static_cohort.person_id AS person_id
FROM person_static_cohort
WHERE and(equals(person_static_cohort.team_id, 420), equals(person_static_cohort.cohort_id, XX)))))
WHERE and(equals(person_static_cohort.team_id, 2), equals(person_static_cohort.cohort_id, XX)))))
LIMIT 100
SETTINGS readonly=2, max_execution_time=60, allow_experimental_object_type=1, format_csv_allow_double_quotes=0, max_ast_elements=4000000, max_expanded_ast_elements=4000000, max_bytes_before_external_group_by=0

Expand Down

0 comments on commit 994d996

Please sign in to comment.