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
Instead of parsing interval literals in PostgreSQL as IntervalLiteral and in other dialects as IntervalExpr, they are now always parsed as IntervalLiteral (175465f)
IntervalDataType properties fieldsKw and precision have been replaced with unit: IntervalUnit | IntervalUnitRange, making it more similar to IntervalLiteral (fc3f9e6)
Move IntervalUnit and IntervalUnitRange types have been moved from AllExprNodes to AllDataTypeNodes (2ae45dc)
Improved PostgreSQL intervals support
Support INTERVAL '15' SECOND (precision) literal syntax
Proper PostgreSQL operators support. Now recognizing any possibly operator instead of just a predefined list of the most well-known operators (#122, #79)
Support identifiers in PostgreSQL type modifiers, like GEOMETRY(POINT, 123) (#121)