mirror of
https://github.com/umami-software/umami.git
synced 2026-02-08 06:37:18 +01:00
Updated data query limits.
This commit is contained in:
parent
b6b1488ddf
commit
ffa954ee02
4 changed files with 13 additions and 5 deletions
|
|
@ -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 => {
|
||||
|
|
|
|||
|
|
@ -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 => {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue