Bump query limit to 500.

This commit is contained in:
Mike Cao 2024-02-14 15:13:53 -08:00
parent bbf85cb110
commit 1955166bdf
6 changed files with 11 additions and 14 deletions

View file

@ -31,7 +31,7 @@ async function relationalQuery(websiteId: string, filters: QueryFilters & { fiel
${filterQuery}
group by event_key, data_type, string_value
order by 3 desc, 2 desc, 1 asc
limit 100
limit 500
`,
params,
);
@ -59,7 +59,7 @@ async function clickhouseQuery(
${filterQuery}
group by event_key, data_type, string_value
order by 3 desc, 2 desc, 1 asc
limit 100
limit 500
`,
params,
).then(a => {