[
https://issues.apache.org/jira/browse/SPARK-16343?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15358691#comment-15358691
]
Apache Spark commented on SPARK-16343:
--------------------------------------
User 'jiangxb1987' has created a pull request for this issue:
https://github.com/apache/spark/pull/14012
> Improve the PushDownPredicate rule to pushdown predicates currectly in
> non-deterministic condition
> --------------------------------------------------------------------------------------------------
>
> Key: SPARK-16343
> URL: https://issues.apache.org/jira/browse/SPARK-16343
> Project: Spark
> Issue Type: Improvement
> Components: SQL
> Affects Versions: 1.6.2
> Reporter: Jiang Xingbo
> Priority: Critical
>
> Currently our Optimizer may reorder the predicates to run them more
> efficient, but in non-deterministic condition, change the order between
> deterministic parts and non-deterministic parts may change the number of
> input rows. For example:
> {code:sql}
> SELECT a FROM t WHERE rand() < 0.1 AND a = 1
> {code}
> And
> {code:sql}
> SELECT a FROM t WHERE a = 1 AND rand() < 0.1
> {code}
> may call rand() for different times and therefore the output rows differ.
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]