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 */
557
557
| <OP_MINORTHANEQUALS: "<" (<WHITESPACE>)* "=">
558
558
| <OP_NOTEQUALSSTANDARD: "<" (<WHITESPACE>)* ">">
559
559
| <OP_NOTEQUALSBANG: "!" (<WHITESPACE>)* "=">
560
+ | <OP_NOTEQUALSHAT: "^" (<WHITESPACE>)* "=">
560
561
| <OP_CONCAT: "|" (<WHITESPACE>)* "|">
561
562
| <OP_DOUBLEAND: "&&">
562
563
| <OP_CONTAINS: "&>">
@@ -4081,6 +4082,7 @@ Expression RegularCondition() #RegularCondition:
4081
4082
| token=<OP_MINORTHANEQUALS> { result = new MinorThanEquals(token.image); }
4082
4083
| token=<OP_NOTEQUALSSTANDARD> { result = new NotEqualsTo(token.image); }
4083
4084
| token=<OP_NOTEQUALSBANG> { result = new NotEqualsTo(token.image); }
4085
+ | token=<OP_NOTEQUALSHAT> { result = new NotEqualsTo(token.image); }
4084
4086
| "*=" { result = new TSQLLeftJoin(); }
4085
4087
| "=*" { result = new TSQLRightJoin(); }
4086
4088
| token=<OP_DOUBLEAND> { result = new DoubleAnd(); }
You can’t perform that action at this time.
0 commit comments