Details
-
Bug
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
None
-
None
Description
Wrong result when query with group by x order by y limit n
query: select a, count from t group by a order by 2 desc limit n
before distribution: select a, count from t group by a order by 2 desc limit n
now distribution: select a, count from t group by a order by 2 desc