You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@spark.apache.org by "eaton (JIRA)" <ji...@apache.org> on 2018/07/20 02:18:00 UTC

[jira] [Created] (SPARK-24870) Cache can't work normally if there are case letters in SQL

eaton created SPARK-24870:
-----------------------------

             Summary: Cache can't work normally if there are case letters in SQL
                 Key: SPARK-24870
                 URL: https://issues.apache.org/jira/browse/SPARK-24870
             Project: Spark
          Issue Type: Bug
          Components: SQL
    Affects Versions: 2.3.1
            Reporter: eaton


Cache can't work normally if there are case letters in SQL, 
for example:
 sql("CREATE TABLE IF NOT EXISTS src (key INT, value STRING) USING hive")

sql("select key, sum(case when Key > 0 then 1 else 0 end) as positiveNum " +
 "from src group by key").cache().createOrReplaceTempView("src_cache")
 sql(
 s"""select a.key
 from
 (select key from src_cache where positiveNum = 1)a
 left join
 (select key from src_cache )b
 on a.key=b.key
 """).explain

 

The subquery "select key from src_cache where positiveNum = 1" on the left of join can use the cache data, but the subquery "select key from src_cache" on the right of join cannot use the cache data.



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