add final keyword to session data queries

This commit is contained in:
Francis Cao 2024-08-15 12:04:48 -07:00
parent c79720ae1d
commit 439377f5c5
3 changed files with 3 additions and 3 deletions

View file

@ -32,7 +32,7 @@ async function clickhouseQuery(websiteId: string, sessionId: string) {
number_value as numberValue,
date_value as dateValue,
created_at as createdAt
from session_data
from session_data final
where website_id = {websiteId:UUID}
and session_id = {sessionId:UUID}
order by data_key asc