0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-28 18:26:15 +01:00
posthog/ee/clickhouse/sql/funnels/step_action.py
Eric Duong cecb7510b8
General Reorganization (#1981)
* small tweaks and reorganize session queries

* move all queries to query folder
2020-10-22 07:35:57 -04:00

10 lines
286 B
Python

STEP_ACTION_SQL = """
arrayFilter(
(timestamp, event, random_event_id) ->
{is_first_step} AND
(team_id = {team_id}) AND
random_event_id IN ({actions_query}) {filters}
, timestamps, eventsArr, event_ids
)[1] AS step_{step}
"""