Github user ravipesala commented on a diff in the pull request:

    https://github.com/apache/spark/pull/2397#discussion_r17594424
  
    --- Diff: sql/hive/src/main/scala/org/apache/spark/sql/hive/HiveQl.scala ---
    @@ -229,7 +229,13 @@ private[hive] object HiveQl {
                 SetCommand(Some(key), Some(value))
             }
           } else if (sql.trim.toLowerCase.startsWith("cache table")) {
    -        CacheCommand(sql.trim.drop(12).trim, true)
    +        sql.trim.drop(12).trim.split(" ").toSeq match {
    +          case Seq(tableName) => 
    +            CacheCommand(tableName, true)
    +          case Seq(tableName,as, select@_*) => 
    --- End diff --
    
    @liancheng Added space after ```, ``` Thank you
    
    @chenghao-intel  I can see a difference between ```CREATE TABLE``` and 
```CACHE TABLE```. Because the later is supported by hive parser but ```CACHE 
TABLE``` is not supported by hive parser.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to