You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@spark.apache.org by "Ye Li (Jira)" <ji...@apache.org> on 2021/10/22 07:29:00 UTC

[jira] [Created] (SPARK-37096) Where clause and where operator will report error on varchar column type

Ye Li created SPARK-37096:
-----------------------------

             Summary: Where clause and where operator will report error on varchar column type
                 Key: SPARK-37096
                 URL: https://issues.apache.org/jira/browse/SPARK-37096
             Project: Spark
          Issue Type: Bug
          Components: PySpark, SQL
    Affects Versions: 3.1.2, 3.1.1
            Reporter: Ye Li


create table test1(col1 int, col2 varchar(120)) stored as orc;
insert into test1 values(123, 'abc');
insert into test1 values(1234, 'abcd');

 

sparkSession.sql(‘select * from bdctemp.liye_test202110212’)
is OK,but

sparkSession.sql(‘select * from bdctemp.liye_test202110212 where col2 = “abc”’)
or
sparkSession.sql(‘select * from bdctemp.liye_test202110212’).where(‘col2 = “abc”’)

report error:

java.lang.UnsuppotedOperationException: DataType: varchar(120)



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