Updated data query limits.

This commit is contained in:
Mike Cao 2024-08-17 20:27:40 -07:00
parent b6b1488ddf
commit ffa954ee02
4 changed files with 13 additions and 5 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 => {