aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDoingDone9 <799203320@qq.com>2015-02-09 16:40:26 -0800
committerMichael Armbrust <michael@databricks.com>2015-02-09 16:40:26 -0800
commitd08e7c2b498584609cb3c7922eaaa2a0d115603f (patch)
tree45eeeddc13284105ef1f640a690a84e46acc69ca
parent0ee53ebce9944722e76b2b28fae79d9956be9f17 (diff)
downloadspark-d08e7c2b498584609cb3c7922eaaa2a0d115603f.tar.gz
spark-d08e7c2b498584609cb3c7922eaaa2a0d115603f.tar.bz2
spark-d08e7c2b498584609cb3c7922eaaa2a0d115603f.zip
[SPARK-5648][SQL] support "alter ... unset tblproperties("key")"
make hivecontext support "alter ... unset tblproperties("key")" like : alter view viewName unset tblproperties("k") alter table tableName unset tblproperties("k") Author: DoingDone9 <799203320@qq.com> Closes #4424 from DoingDone9/unset and squashes the following commits: 6dd8bee [DoingDone9] support "alter ... unset tblproperties("key")"
-rw-r--r--sql/hive/src/main/scala/org/apache/spark/sql/hive/HiveQl.scala2
1 files changed, 2 insertions, 0 deletions
diff --git a/sql/hive/src/main/scala/org/apache/spark/sql/hive/HiveQl.scala b/sql/hive/src/main/scala/org/apache/spark/sql/hive/HiveQl.scala
index 2a4b880921..f51af62d33 100644
--- a/sql/hive/src/main/scala/org/apache/spark/sql/hive/HiveQl.scala
+++ b/sql/hive/src/main/scala/org/apache/spark/sql/hive/HiveQl.scala
@@ -103,6 +103,7 @@ private[hive] object HiveQl {
"TOK_CREATEINDEX",
"TOK_DROPDATABASE",
"TOK_DROPINDEX",
+ "TOK_DROPTABLE_PROPERTIES",
"TOK_MSCK",
"TOK_ALTERVIEW_ADDPARTS",
@@ -111,6 +112,7 @@ private[hive] object HiveQl {
"TOK_ALTERVIEW_PROPERTIES",
"TOK_ALTERVIEW_RENAME",
"TOK_CREATEVIEW",
+ "TOK_DROPVIEW_PROPERTIES",
"TOK_DROPVIEW",
"TOK_EXPORT",