[ https://issues.apache.org/jira/browse/SPARK-16994?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15427711#comment-15427711 ]
Apache Spark commented on SPARK-16994: -------------------------------------- User 'rxin' has created a pull request for this issue: 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 > > {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