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

    https://github.com/apache/spark/pull/7015#discussion_r33528025
  
    --- Diff: 
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/AbstractSparkSQLParser.scala
 ---
    @@ -30,12 +30,14 @@ private[sql] abstract class AbstractSparkSQLParser
     
       def parse(input: String): LogicalPlan = {
         // Initialize the Keywords.
    -    lexical.initialize(reservedWords)
    +    initLexical
         phrase(start)(new lexical.Scanner(input)) match {
           case Success(plan, _) => plan
           case failureOrError => sys.error(failureOrError.toString)
         }
       }
    +  /* One time initialization of lexical.This avoid reinitialization of  
lexical in parse method */
    +  protected lazy val initLexical: Unit = lexical.initialize(reservedWords)
    --- End diff --
    
    Could we not just do this below when we create `lexical`?


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