Uploaded image for project: 'Spark'
  1. Spark
  2. SPARK-29343

Eliminate sorts without limit in the subquery of Join/Aggregation

    XMLWordPrintableJSON

Details

    • Improvement
    • Status: Resolved
    • Major
    • Resolution: Fixed
    • 3.0.0
    • 3.0.0
    • SQL
    • None

    Description

      The Sort without Limit operator in Join/GroupBy subquery is useless.

       

      For example, select count(1) from (select a from test1 order by a) is equal to select count(1) from (select a from test1).
      'select * from (select a from test1 order by a) t1 join (select b from test2) t2 on t1.a = t2.b' is equal to select * from (select a from test1) t1 join (select b from test2) t2 on t1.a = t2.b.

      Remove useless Sort operator can import performance.

      Attachments

        Issue Links

          Activity

            People

              EdisonWang EdisonWang
              EdisonWang EdisonWang
              Votes:
              0 Vote for this issue
              Watchers:
              3 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: