mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-26 12:29:05 +01:00
Return array of records
This commit is contained in:
parent
fc1f2c9cd3
commit
6bdceabc65
@ -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