forked from apache/doris
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Performance](opt) opt the order by performance in permutation (apach…
…e#38985) ## Proposed changes Before: ``` select l_quantity from lineitem order by l_quantity limit 10000020; +--------------+ | ReturnedRows | +--------------+ | 10000020 | +--------------+ 1 row in set (2 min 24.42 sec) ``` after: ``` mysql [tpch]>select l_quantity from lineitem order by l_quantity limit 10000020; +--------------+ | ReturnedRows | +--------------+ | 10000020 | +--------------+ 1 row in set (28.42 sec) ``` <!--Describe your changes.-->
- Loading branch information
Showing
3 changed files
with
23 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters