You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@spark.apache.org by "Apache Spark (Jira)" <ji...@apache.org> on 2021/02/16 11:46:00 UTC

[jira] [Commented] (SPARK-34444) Pushdown scalar-subquery filter to FileSourceScan

    [ https://issues.apache.org/jira/browse/SPARK-34444?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17285149#comment-17285149 ] 

Apache Spark commented on SPARK-34444:
--------------------------------------

User 'wangyum' has created a pull request for this issue:
https://github.com/apache/spark/pull/31573

> Pushdown scalar-subquery filter to FileSourceScan
> -------------------------------------------------
>
>                 Key: SPARK-34444
>                 URL: https://issues.apache.org/jira/browse/SPARK-34444
>             Project: Spark
>          Issue Type: Improvement
>          Components: SQL
>    Affects Versions: 3.2.0
>            Reporter: Yuming Wang
>            Priority: Major
>
> We can pushdown {{a < (select max(d) from t2)}} to FileSourceScan:
> {code:sql}
> CREATE TABLE t1 using parquet AS SELECT id AS a, id AS b FROM range(500000000L);
> CREATE TABLE t2 using parquet AS SELECT id AS d FROM range(20);
> SELECT count(*) FROM t1 where a < (select max(d) from t2);
> {code}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

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