Removed filters from pages.

This commit is contained in:
Mike Cao 2023-03-29 23:29:37 -07:00
parent a026fc97fc
commit 358519dddd
4 changed files with 6 additions and 28 deletions

View file

@ -58,7 +58,7 @@ async function relationalQuery(
${filterQuery}
group by 1
order by 2 desc
limit 200`,
limit 100`,
params,
);
}
@ -93,7 +93,7 @@ async function clickhouseQuery(
${filterQuery}
group by x
order by y desc
limit 200`,
limit 100`,
params,
);
}

View file

@ -44,7 +44,7 @@ async function relationalQuery(
)
group by 1
order by 2 desc
limit 200`,
limit 100`,
params,
);
}
@ -70,7 +70,7 @@ async function clickhouseQuery(
${filterQuery}
group by x
order by y desc
limit 200`,
limit 100`,
params,
);
}