You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For table t1, assume the NDV of c1 of t1 is 100000.
For quey like: select max(c1) from t1 group by c2 limit 100;
The HashTable of Aggregtion should be fixed 100 instead of 100000 because we onley need 100 rows
The text was updated successfully, but these errors were encountered:
Enhancement
For table
t1
, assume the NDV of c1 of t1 is 100000.For quey like:
select max(c1) from t1 group by c2 limit 100;
The HashTable of Aggregtion should be fixed 100 instead of 100000 because we onley need 100 rows
The text was updated successfully, but these errors were encountered: