dongjoon-hyun commented on pull request #29089:
URL: https://github.com/apache/spark/pull/29089#issuecomment-658543717


   Oops. Sorry, guys. It seems that I missed something during testing. For the 
following case, we should not remove `Sort`.
   
   **BEFORE THIS PR**
   ```scala
   scala> Seq((1,10),(1,20),(2,30),(2,40)).toDF("a", 
"b").repartition(2).createOrReplaceTempView("t")
   
   scala> sql("select * from (select * from t order by b desc) distribute by 
a").show()
   +---+---+
   |  a|  b|
   +---+---+
   |  1| 20|
   |  1| 10|
   |  2| 40|
   |  2| 30|
   +---+---+
   ```
   
   **AFTER THIS PR**
   ```scala
   scala> Seq((1,10),(1,20),(2,30),(2,40)).toDF("a", 
"b").repartition(2).createOrReplaceTempView("t")
   
   scala> sql("select * from (select * from t order by b desc) distribute by 
a").show()
   +---+---+
   |  a|  b|
   +---+---+
   |  1| 10|
   |  1| 20|
   |  2| 30|
   |  2| 40|
   +---+---+
   ```
   


----------------------------------------------------------------
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.

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



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

Reply via email to