Skip to content
Snippets Groups Projects
Commit bc363560 authored by wangfei's avatar wangfei Committed by Michael Armbrust
Browse files

[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 <wangfei1@huawei.com>

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

10ade16 [wangfei] remove cache keyword in sql parser
parent b62c3524
No related branches found
No related tags found
No related merge requests found
......@@ -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")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment