fix clickhouse calls (#1536)

This commit is contained in:
Brian Cao 2022-09-23 22:43:51 -07:00 committed by GitHub
parent dfac7e1af5
commit 78c3453639
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 41 additions and 34 deletions

View file

@ -52,7 +52,8 @@ async function clickhouseQuery(
${getDateQuery('created_at', unit, timezone)} t,
count(*) y
from event
where website_id= $1
where event_name != ''
and website_id= $1
and ${getBetweenDates('created_at', start_at, end_at)}
${getFilterQuery('event', filters, params)}
group by x, t

View file

@ -31,12 +31,13 @@ function clickhouseQuery(websites, start_at) {
`select
event_uuid,
website_id,
session_id,
session_uuid,
created_at,
url,
event_name
from event
where website_id in (${websites.join[',']}
and created_at >= ${getDateFormat(start_at)})`,
where event_name != ''
and ${websites && websites.length > 0 ? `website_id in (${websites.join(',')})` : '0 = 0'}
and created_at >= ${getDateFormat(start_at)}`,
);
}