Skip to content

Commit

Permalink
Fixes #104 @SergeyPugachyov thanks for reporting and fixing
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasPohl committed Dec 8, 2018
1 parent fb66b98 commit 6e1883e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ public final class EsqlLexer {

private static final String IDENTIFIER_START = "(?:[$_" + UNICODE_LETTER + "]|\\\\" + UNICODE_ESCAPE_SEQUENCE + ")";
private static final String IDENTIFIER_PART = "(?:" + IDENTIFIER_START + "|[" + UNICODE_COMBINING_MARK + UNICODE_DIGIT + UNICODE_CONNECTOR_PUNCTUATION + "])";
private static final String IDENTIFIER_PART_ESCAPED = "(?:" + IDENTIFIER_START + "|[" + UNICODE_COMBINING_MARK + UNICODE_DIGIT + UNICODE_CONNECTOR_PUNCTUATION+ "-.:<> " + "]|\"\")";
private static final String IDENTIFIER_PART_ESCAPED = "(?:" + IDENTIFIER_START + "|[{" + UNICODE_COMBINING_MARK + UNICODE_DIGIT + UNICODE_CONNECTOR_PUNCTUATION+ "-.:<> }]|\"\")";

public static final String IDENTIFIER = IDENTIFIER_START + IDENTIFIER_PART + "*+";
public static final String IDENTIFIER_WITH_QUOTES ="\"(" +IDENTIFIER_PART_ESCAPED + "*+)"+"\"";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ public void identifier(){
.matches("XML")
.matches("Element")
.matches("timestamp")
.matches("\"{SCHEMA_NAME_PARAMETER}.INTEGRATION.SEND_ACQ\"")
;

}
Expand Down

0 comments on commit 6e1883e

Please sign in to comment.