You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@spark.apache.org by "Yuming Wang (JIRA)" <ji...@apache.org> on 2018/08/08 15:35:00 UTC

[jira] [Created] (SPARK-25056) Unify the InConversion and BinaryComparison behaviour when InConversion's list only contains one datatype

Yuming Wang created SPARK-25056:
-----------------------------------

             Summary: Unify the InConversion and BinaryComparison behaviour when InConversion's list only contains one datatype
                 Key: SPARK-25056
                 URL: https://issues.apache.org/jira/browse/SPARK-25056
             Project: Spark
          Issue Type: Improvement
          Components: SQL
    Affects Versions: 2.4.0
            Reporter: Yuming Wang


{code:java}
scala> val df = spark.range(4).toDF().selectExpr("cast(id as decimal(9, 2)) as id")

df: org.apache.spark.sql.DataFrame = [id: decimal(9,2)]



scala> df.filter("id in('1', '3')").show

+---+

| id|

+---+

+---+





scala> df.filter("id = '1' or id ='3'").show

+----+

|  id|

+----+

|1.00|

|3.00|

+----+
{code}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

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