You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Allow defining calling of function where returned attribute also might have inner attributes
Example: f1(arguments).f2.f3 = 1 clause is not supported yet
SQL Example
Simplified Query Example, focusing on the failing feature f1(arguments).f2.f3 = 1
net.sf.jsqlparser.JSQLParserException: Encountered unexpected token: "=" "=" at line 1, column 21. Was expecting one of: "("
Additional context
used version: 4.6
Tips:
Use net.sf.jsqlparser.parser.CCJSqlParserUtil#parseCondExpression(java.lang.String) to parse condition
The current workaround to get it somehow working is: f1(arguments).f2.f3() = 1