File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
sql/hive/src/main/scala/org/apache/spark/sql/hive Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -882,7 +882,7 @@ https://cwiki.apache.org/confluence/display/Hive/Enhanced+Aggregation%2C+Cube%2C
882
882
(rowFormat, None , Nil )
883
883
884
884
case Token (" TOK_SERDENAME" , Token (serdeClass, Nil ) :: Nil ) :: Nil =>
885
- (Nil , Some (PlanUtils .stripQuotes (serdeClass)), Nil )
885
+ (Nil , Some (BaseSemanticAnalyzer .unescapeSQLString (serdeClass)), Nil )
886
886
887
887
case Token (" TOK_SERDENAME" , Token (serdeClass, Nil ) ::
888
888
Token (" TOK_TABLEPROPERTIES" ,
@@ -891,7 +891,7 @@ https://cwiki.apache.org/confluence/display/Hive/Enhanced+Aggregation%2C+Cube%2C
891
891
case Token (" TOK_TABLEPROPERTY" , Token (name, Nil ) :: Token (value, Nil ) :: Nil ) =>
892
892
(name, value)
893
893
}
894
- (Nil , Some (PlanUtils .stripQuotes (serdeClass)), serdeProps)
894
+ (Nil , Some (BaseSemanticAnalyzer .unescapeSQLString (serdeClass)), serdeProps)
895
895
896
896
case Nil => (Nil , None , Nil )
897
897
}
You can’t perform that action at this time.
0 commit comments