We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This can increase performance in two cases:
select sum(a), avg(a), ...
select count(*), ...
count(*)
└─StreamAppendOnlyHashAgg { group_key: [...], aggs: [count, count, ...] }
Seems these two cases need different optimization logic, so track it here:
LogicalAgg
The text was updated successfully, but these errors were encountered:
stdrc
No branches or pull requests
This can increase performance in two cases:
select sum(a), avg(a), ...
(perf: nexmark q17 #7351 (comment))select count(*), ...
, at the same time we internally insert acount(*)
to the beginning, then we'll have plan like this:Seems these two cases need different optimization logic, so track it here:
LogicalAgg
#8196count(*)
while generating stream plan #8197The text was updated successfully, but these errors were encountered: