File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed
src/main/jjtree/net/sf/jsqlparser/parser Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -557,6 +557,7 @@ TOKEN : /* Operators */
557557| <OP_MINORTHANEQUALS: "<" (<WHITESPACE>)* "=">
558558| <OP_NOTEQUALSSTANDARD: "<" (<WHITESPACE>)* ">">
559559| <OP_NOTEQUALSBANG: "!" (<WHITESPACE>)* "=">
560+ | <OP_NOTEQUALSHAT: "^" (<WHITESPACE>)* "=">
560561| <OP_CONCAT: "|" (<WHITESPACE>)* "|">
561562| <OP_DOUBLEAND: "&&">
562563| <OP_CONTAINS: "&>">
@@ -4081,6 +4082,7 @@ Expression RegularCondition() #RegularCondition:
40814082 | token=<OP_MINORTHANEQUALS> { result = new MinorThanEquals(token.image); }
40824083 | token=<OP_NOTEQUALSSTANDARD> { result = new NotEqualsTo(token.image); }
40834084 | token=<OP_NOTEQUALSBANG> { result = new NotEqualsTo(token.image); }
4085+ | token=<OP_NOTEQUALSHAT> { result = new NotEqualsTo(token.image); }
40844086 | "*=" { result = new TSQLLeftJoin(); }
40854087 | "=*" { result = new TSQLRightJoin(); }
40864088 | token=<OP_DOUBLEAND> { result = new DoubleAnd(); }
You can’t perform that action at this time.
0 commit comments