You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tajo.apache.org by "Hyunsik Choi (JIRA)" <ji...@apache.org> on 2013/10/04 03:15:42 UTC

[jira] [Created] (TAJO-230) Support unicode identifiers

Hyunsik Choi created TAJO-230:
---------------------------------

             Summary: Support unicode identifiers
                 Key: TAJO-230
                 URL: https://issues.apache.org/jira/browse/TAJO-230
             Project: Tajo
          Issue Type: New Feature
          Components: parser
            Reporter: Hyunsik Choi


The current parse only recognizes a combination of alphabet characters and underscore as an identifier used for function names, column names, and table names. This is because of the following antlr lexer rules:
{code}
Identifier
  : Nonreserved_keywords
  | Regular_Identifier
  ;

Regular_Identifier
  : ('a'..'z'|'A'..'Z'|'_') ('a'..'z'|'A'..'Z'|Digit|'_')*
  ;
{code}

In some CJK country, their characters can be used as identifiers. We need to support unicode identifier.



--
This message was sent by Atlassian JIRA
(v6.1#6144)