Repository: spark
Updated Branches:
  refs/heads/master b62c35245 -> bc3635608


[SQL][Minor] Remove cache keyword in SqlParser

Since cache keyword already defined in `SparkSQLParser` and `SqlParser` of 
catalyst is a more general parser which should not cover keywords related to 
underlying compute engine, to remove  cache keyword in  `SqlParser`.

Author: wangfei <wangf...@huawei.com>

Closes #4393 from scwf/remove-cache-keyword and squashes the following commits:

10ade16 [wangfei] remove cache keyword in sql parser


Project: http://git-wip-us.apache.org/repos/asf/spark/repo
Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/bc363560
Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/bc363560
Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/bc363560

Branch: refs/heads/master
Commit: bc36356080e3b52aaf61fc1e6b204146ab96d29f
Parents: b62c352
Author: wangfei <wangf...@huawei.com>
Authored: Fri Feb 6 12:42:23 2015 -0800
Committer: Michael Armbrust <mich...@databricks.com>
Committed: Fri Feb 6 12:42:23 2015 -0800

----------------------------------------------------------------------
 .../src/main/scala/org/apache/spark/sql/catalyst/SqlParser.scala    | 1 -
 1 file changed, 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/spark/blob/bc363560/sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/SqlParser.scala
----------------------------------------------------------------------
diff --git 
a/sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/SqlParser.scala 
b/sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/SqlParser.scala
index a9bd079..1c588ee 100755
--- a/sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/SqlParser.scala
+++ b/sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/SqlParser.scala
@@ -57,7 +57,6 @@ class SqlParser extends AbstractSparkSQLParser {
   protected val AVG = Keyword("AVG")
   protected val BETWEEN = Keyword("BETWEEN")
   protected val BY = Keyword("BY")
-  protected val CACHE = Keyword("CACHE")
   protected val CASE = Keyword("CASE")
   protected val CAST = Keyword("CAST")
   protected val COALESCE = Keyword("COALESCE")


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

Reply via email to