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
Always check against the Latest SNAPSHOT of JSQLParser and the Syntax Diagram
Failing SQL Feature:
Using a between expression, with cast doesn't parse correctly
SQL Example:
Simplified Query Example, focusing on the failing feature
SELECT*FROM tbl WHERE
day BETWEEN
CAST(CAST((NOW() + INTERVAL '-30 day') ASdate) AStimestamptz)
AND
CAST(CAST((NOW() + INTERVAL '-1 day') ASdate) AStimestamptz);