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
chore: improve `explain perf` to support flag inlined function (#19042) * chore: post process frames after explain perf * ci: add a flag to allow skip trim debug info
feat(query): add DATE ± INTERVAL -> DATE function (#19022) * feat(query): add DATE ± INTERVAL -> DATE function - Added native DateType ± IntervalType -> DateType overloads so pure date math no longer casts through timestamp and reuses the existing day/month evaluators. - Taught the binder to inspect interval literals when binding +/-: if the interval has no time component we keep the date overload, otherwise we auto-cast to the timestamp overload * fix plus/minus