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
Awaiting PR feedback on additions to Datum before fixing the build hence still draft. Fixing the builtin functions will be a lot of work which is subject to change based upon the modeling.
Adding INTERVAL was attempted in #1656. A potential lesson learned is that Java's duration and period may not properly model SQL's INTERVAL semantics. Still need some further investigation here. We may need to introduce a separate class to model properly.
Description
PartiQL does not implement the SQL datetime operators; here's what needs to be done: see SQL-99 4.7.3 p.29.
Working PR – #1656
Tasks
datetime - datetime -> interval
datetime + interval -> datetime
datetime - interval -> datetime
interval + datetime -> datetime
interval + interval -> interval
interval - interval -> interval
interval * numeric -> interval
interval / numeric -> interval
numeric * interval -> interval
The text was updated successfully, but these errors were encountered: