[ 
https://issues.apache.org/jira/browse/SPARK-16994?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Wenchen Fan resolved SPARK-16994.
---------------------------------
       Resolution: Fixed
    Fix Version/s: 2.1.0
                   2.0.1

Issue resolved by pull request 14713
[https://github.com/apache/spark/pull/14713]

> Filter and limit are illegally permuted.
> ----------------------------------------
>
>                 Key: SPARK-16994
>                 URL: https://issues.apache.org/jira/browse/SPARK-16994
>             Project: Spark
>          Issue Type: Bug
>          Components: SQL
>    Affects Versions: 2.0.0
>            Reporter: TobiasP
>             Fix For: 2.0.1, 2.1.0
>
>
> {noformat}
> scala> spark.createDataset(1 to 100).limit(10).filter($"value" % 10 === 
> 0).explain
> == Physical Plan ==
> CollectLimit 10
> +- *Filter ((value#875 % 10) = 0)
>    +- LocalTableScan [value#875]
> scala> spark.createDataset(1 to 100).limit(10).filter($"value" % 10 === 
> 0).collect
> res23: Array[Int] = Array(10, 20, 30, 40, 50, 60, 70, 80, 90, 100)
> {noformat}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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

Reply via email to