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

    https://github.com/apache/spark/pull/7710#discussion_r35664153
  
    --- Diff: sql/hive/src/main/scala/org/apache/spark/sql/hive/HiveQl.scala ---
    @@ -874,15 +874,15 @@ 
https://cwiki.apache.org/confluence/display/Hive/Enhanced+Aggregation%2C+Cube%2C
                 }
     
                 def matchSerDe(clause: Seq[ASTNode])
    -              : (Seq[(String, String)], String, Seq[(String, String)]) = 
clause match {
    +              : (Seq[(String, String)], Option[String], Seq[(String, 
String)]) = clause match {
                   case Token("TOK_SERDEPROPS", propsClause) :: Nil =>
                     val rowFormat = propsClause.map {
                       case Token(name, Token(value, Nil) :: Nil) => (name, 
value)
                     }
    -                (rowFormat, "", Nil)
    +                (rowFormat, None, Nil)
     
                   case Token("TOK_SERDENAME", Token(serdeClass, Nil) :: Nil) 
:: Nil =>
    -                (Nil, serdeClass, Nil)
    +                (Nil, Some(PlanUtils.stripQuotes(serdeClass)), Nil)
    --- End diff --
    
    Good question; I think that we should be using 
`BaseSemanticAnalyzer.unescapeSQLString` since that's also what we use for the 
input/outputformat class names, etc.  I've updated this to use 
`BaseSemanticAnalyzer.unescapeSQLString`.


---
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