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
SELECT key FROM jira_issue WHERE status ='done'AND resolution_date >= (now() -'2 weeks'::interval)::timestamp
Results in the following warning (and whole qual is therefore skipped):
2025-02-04 20:54:29.494 UTC [INFO] hub: failed to convert qual value; QualDefsToQuals: unsupported qual value (type T_FuncExpr), skipping
A simple fix for the situation I figured is to use (now() - '2 weeks'::interval)::timestamptz (note the timestamptz) however I'm not sure if that's always the case.