We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b5b11b9 commit f79f58dCopy full SHA for f79f58d
src/main/jjtree/net/sf/jsqlparser/parser/JSqlParserCC.jjt
@@ -2150,22 +2150,6 @@ Expression Condition():
2150
{ return not?new NotExpression(result):result; }
2151
}
2152
2153
-Expression LightCondition():
2154
-{
2155
- Expression result;
2156
- Token token;
2157
- boolean not = false;
2158
-}
2159
2160
- [ <K_NOT> { not = true; }]
2161
- (
2162
- LOOKAHEAD(RegularCondition()) result=RegularCondition()
2163
- | result=SimpleExpression()
2164
- )
2165
-
2166
- { return not?new NotExpression(result):result; }
2167
2168
2169
Expression RegularCondition() #RegularCondition:
2170
{
2171
Expression result = null;
0 commit comments