fix(chalice): fixed click_rage-heatmap card EE
This commit is contained in:
parent
3ff68052f8
commit
ca1d821488
1 changed files with 3 additions and 3 deletions
|
|
@ -62,9 +62,9 @@ def get_by_url(project_id, data: schemas.GetHeatMapPayloadSchema):
|
|||
AND issues.datetime <= toDateTime(%(endDate)s/1000)
|
||||
AND issues.project_id = toUInt16(%(project_id)s)
|
||||
AND issues.event_type = 'ISSUE'
|
||||
AND issues.project_id = toUInt16(%(project_id)s
|
||||
AND mis.project_id = toUInt16(%(project_id)s
|
||||
AND mis.type='click_rage'))))""")
|
||||
AND issues.project_id = toUInt16(%(project_id)s)
|
||||
AND mis.project_id = toUInt16(%(project_id)s)
|
||||
AND mis.type='click_rage'))""")
|
||||
query_from += """ LEFT JOIN experimental.events AS issues ON (main_events.session_id=issues.session_id)
|
||||
LEFT JOIN experimental.issues AS mis ON (issues.issue_id=mis.issue_id)"""
|
||||
with ch_client.ClickHouseClient() as cur:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue