Github user javadba commented on the pull request:

    https://github.com/apache/spark/pull/1586#issuecomment-51018296
  
    Surprising result here:  the following change makes this work:
    
    StackOverflowError:
    
      protected val OCTET_LENGTH = Keyword("OCTET_LENGTH")
    
    Works fine:
    
      protected val OCTET_LENGTH = Keyword("OCTET_LEN")
    
    Also works fine:
    
      protected val OCTET_LENGTH = Keyword("OCTET_LENG")
    
    Let's double check - make sure this really repeatably fails on 
"OCTET_LENGTH":
    
    And Yes! It does fail again with OCTET_LENGTH.   We have a clear test 
failure scenario. 
    
    So here  we are  we need to do OCTET/CHAR_LEN  and NOT OCTET/CHAR_LENGTH - 
until the root cause of this unrelated parser bug is found!
    
    Should I open a separate JIRA for the parser bug?
    
    BTW my theory is that there is something happening when one KEYWORD  
contains another KEYWORD.  But OTOH the LEN keyword is not causing an issue. So 
this is a subtle case to understand
     
    



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