update CH event to website_event
This commit is contained in:
@@ -35,7 +35,7 @@ async function clickhouseQuery({ id: sessionId }: { id: string }) {
|
||||
subdivision1,
|
||||
subdivision2,
|
||||
city
|
||||
from event
|
||||
from website_event
|
||||
where session_id = {sessionId:UUID}
|
||||
limit 1`,
|
||||
params,
|
||||
|
||||
@@ -62,7 +62,7 @@ async function clickhouseQuery(
|
||||
|
||||
return rawQuery(
|
||||
`select ${field} x, count(distinct session_id) y
|
||||
from event as x
|
||||
from website_event as x
|
||||
where website_id = {websiteId:UUID}
|
||||
and event_type = ${EVENT_TYPE.pageView}
|
||||
and created_at >= ${getDateFormat(resetDate)}
|
||||
|
||||
@@ -39,7 +39,7 @@ async function clickhouseQuery(websiteId: string, startAt: Date) {
|
||||
subdivision1,
|
||||
subdivision2,
|
||||
city
|
||||
from event
|
||||
from website_event
|
||||
where website_id = {websiteId:UUID}
|
||||
and created_at >= {startAt:DateTime('UTC')}`,
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user