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
Queries such as the following return incorrect results in most cases because the Combine Operator truncates the IndexedTable at the Query Limit. Moreover there are no warnings in the response:
SELECT COUNT(*), cityID
FROM my_table
GROUP BY cityID
LIMIT 10
Queries such as the following return incorrect results in most cases because the Combine Operator truncates the IndexedTable at the Query Limit. Moreover there are no warnings in the response:
Relevant code for this is here:
pinot/pinot-core/src/main/java/org/apache/pinot/core/util/GroupByUtils.java
Lines 110 to 125 in 7293122
I think we can do a couple of things to improve this:
Marking this as a bug because the documentation for Grouping Algorithm does not call this out explicitly: https://docs.pinot.apache.org/users/user-guide-query/query-syntax/grouping-algorithm
The text was updated successfully, but these errors were encountered: