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

Josh Rosen updated SPARK-37643:
-------------------------------
    Labels: correctness  (was: )

> when charVarcharAsString is true, char datatype partition table query 
> incorrect
> -------------------------------------------------------------------------------
>
>                 Key: SPARK-37643
>                 URL: https://issues.apache.org/jira/browse/SPARK-37643
>             Project: Spark
>          Issue Type: Bug
>          Components: SQL
>    Affects Versions: 3.1.2, 3.2.0
>         Environment: spark 3.2.0
>            Reporter: YuanGuanhu
>            Assignee: YuanGuanhu
>            Priority: Major
>              Labels: correctness
>             Fix For: 3.1.3, 3.3.0, 3.2.2
>
>
> This ticket aim at fixing the bug that does not apply right-padding for char 
> types column when charVarcharAsString is true and partition data length is 
> less than defined length.
> For example, a query below returns nothing in master, but a correct result is 
> `abc`.
> {code:java}
> scala> sql("set spark.sql.legacy.charVarcharAsString=true")
> scala> sql("CREATE TABLE tb01(i string, c char(5)) USING parquet partitioned 
> by (c)")
> scala> sql("INSERT INTO tb01 values(1, 'abc')")
> scala> sql("select c from tb01 where c = 'abc'").show
> +---+
> |  c|
> +---+
> +---+{code}
> This is because `ApplyCharTypePadding` rpad the expr to charLength. We should 
> handle this consider conf spark.sql.legacy.charVarcharAsString value.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)

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

Reply via email to