BiteTheDDDDt opened a new pull request, #41287:
URL: https://github.com/apache/doris/pull/41287

   ## Proposed changes
   remove radix sort
   
   ```sql
   radix sort
   mysql [test]>SELECT COUNT() FROM (   SELECT UserID   FROM hits_1m   ORDER BY 
FlashMajor   LIMIT 50000000 ) t;
   +----------+
   | count(*) |
   +----------+
   |  1000000 |
   +----------+
   1 row in set (0.30 sec)
   
   pdq sort
   mysql [test]>SELECT COUNT() FROM (   SELECT UserID   FROM hits_1m   ORDER BY 
FlashMajor   LIMIT 50000000 ) t;
   +----------+
   | count(*) |
   +----------+
   |  1000000 |
   +----------+
   1 row in set (0.24 sec)
   
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org

Reply via email to