Details
-
Type:
Bug
-
Status:
Open
-
Priority:
Major
-
Resolution: Unresolved
-
Affects Version/s: None
-
Fix Version/s: None
-
Component/s: openXMA Dsl Persistence
-
Labels:None
-
Number of attachments :
Description
where c.birthDate >= current_date() contains a valid function call expression (without any parameters) but is not supported currently
the current
FunctionCall:
function=ID '(' arguments+=Expression ( ',' arguments+=Expression)* ')'
;
has to be changed to
FunctionCall:
function=ID '(' arguments+=Expression? ( ',' arguments+=Expression)* ')'
;