mirror of
https://github.com/kremalicious/umami.git
synced 2025-02-01 20:39:44 +01:00
Merge remote-tracking branch 'origin/dev' into dev
This commit is contained in:
commit
3d9da7326e
@ -24,10 +24,10 @@ async function relationalQuery(websiteId: string) {
|
||||
);
|
||||
}
|
||||
|
||||
async function clickhouseQuery(websiteId: string): Promise<{ x: number }> {
|
||||
async function clickhouseQuery(websiteId: string): Promise<{ x: number }[]> {
|
||||
const { rawQuery } = clickhouse;
|
||||
|
||||
const result = rawQuery(
|
||||
return rawQuery(
|
||||
`
|
||||
select
|
||||
count(distinct session_id) x
|
||||
@ -41,6 +41,4 @@ async function clickhouseQuery(websiteId: string): Promise<{ x: number }> {
|
||||
return { x: Number(a.x) };
|
||||
});
|
||||
});
|
||||
|
||||
return result[0] ?? null;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user