Merge branch 'dev' into analytics

This commit is contained in:
Mike Cao 2024-08-17 21:36:18 -07:00
commit 12bebdd61f
8 changed files with 108 additions and 99 deletions

View file

@ -35,7 +35,7 @@ async function relationalQuery(
${filterQuery}
group by string_value
order by 2 desc
limit 500
limit 100
`,
params,
);
@ -63,7 +63,7 @@ async function clickhouseQuery(
${filterQuery}
group by event_name, value
order by 2 desc
limit 500;
limit 100
`,
params,
).then(result => {

View file

@ -31,7 +31,7 @@ async function relationalQuery(
${filterQuery}
group by string_value
order by 2 desc
limit 500
limit 100
`,
params,
);
@ -58,7 +58,7 @@ async function clickhouseQuery(
${filterQuery}
group by value
order by 2 desc
limit 500;
limit 100
`,
params,
).then(result => {