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 cd742d3 commit 51e8428Copy full SHA for 51e8428
src/main/jjtree/net/sf/jsqlparser/parser/JSqlParserCC.jjt
@@ -2992,13 +2992,11 @@ Expression SimpleExpression():
2992
Expression retval = null;
2993
}
2994
{
2995
- (
2996
- retval=ConcatExpression()
2997
- )
2998
-
2999
- {
3000
- return retval;
3001
- }
+ [ LOOKAHEAD(UserVariable() "=") UserVariable() "=" ]
+ retval=ConcatExpression()
+ {
+ return retval;
+ }
3002
3003
3004
Expression ConcatExpression():
@@ -3560,6 +3558,9 @@ RowConstructor RowConstructor(): {
3560
3558
3561
3559
3562
+/**
+TODO: VariableExpression should be a standalone class with more operations available.
3563
+*/
3564
EqualsTo VariableExpression(): {
3565
Expression left;
3566
Expression right;
0 commit comments