You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@spark.apache.org by "Wenchen Fan (Jira)" <ji...@apache.org> on 2020/08/26 06:59:00 UTC

[jira] [Resolved] (SPARK-32659) Fix the data issue of inserted DPP on non-atomic type

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

Wenchen Fan resolved SPARK-32659.
---------------------------------
    Fix Version/s: 3.1.0
                   3.0.1
       Resolution: Fixed

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

> Fix the data issue of inserted DPP on non-atomic type
> -----------------------------------------------------
>
>                 Key: SPARK-32659
>                 URL: https://issues.apache.org/jira/browse/SPARK-32659
>             Project: Spark
>          Issue Type: Bug
>          Components: SQL
>    Affects Versions: 3.0.0
>            Reporter: Yuming Wang
>            Assignee: Yuming Wang
>            Priority: Major
>              Labels: correctness
>             Fix For: 3.0.1, 3.1.0
>
>
> DPP has data issue when pruning on non-atomic type. for example:
> {noformat}
>  spark.range(1000)
>  .select(col("id"), col("id").as("k"))
>  .write
>  .partitionBy("k")
>  .format("parquet")
>  .mode("overwrite")
>  .saveAsTable("df1");
> spark.range(100)
>  .select(col("id"), col("id").as("k"))
>  .write
>  .partitionBy("k")
>  .format("parquet")
>  .mode("overwrite")
>  .saveAsTable("df2")
> spark.sql("set spark.sql.optimizer.dynamicPartitionPruning.fallbackFilterRatio=2")
> spark.sql("set spark.sql.optimizer.dynamicPartitionPruning.reuseBroadcastOnly=false")
> spark.sql("SELECT df1.id, df2.k FROM df1 JOIN df2 ON struct(df1.k) = struct(df2.k) AND df2.id < 2").show
> {noformat}
>  It should return two records, but it returns empty.



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