-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
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
aggregate_statistics should only optimize MIN/MAX when relation is not empty #8914
Conversation
.as_any() | ||
.downcast_ref::<expressions::Column>() | ||
if let Precision::Exact(num_rows) = &stats.num_rows { | ||
if *num_rows > 0 { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We could optimize MIN/MAX if the relation is empty (i.e., return NULL directly). Since it is not the issue itself, I will leave it as follow up.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you @viirya
@@ -3260,3 +3260,19 @@ query I | |||
select count(*) from (select count(*) a, count(*) b from (select 1)); | |||
---- | |||
1 | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we also add another test where there is a single row that doesn't actually pass the predicate?
Like
CREATE TABLE t(col0 INTEGER) as VALUES(2);
SELECT MIN(col0) FROM empty WHERE col0=1;
SELECT MAX(col0) FROM empty WHERE col0=1;
So the table is not actually empty but the filter removes it all
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good idea. Added that one.
Thank you @alamb |
Which issue does this PR close?
Closes #8911.
Rationale for this change
What changes are included in this PR?
Are these changes tested?
Are there any user-facing changes?