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
This is the same operation performed by postgres when extracting the
number of seconds of an interval:
=# select extract(epoch from '1 year'::interval) / 60 / 60 / 24;
?column?
----------
365.25
This way `extract(epoch from interval)` will match the resulting
`timedelta.total_seconds()`.
Close#570
0 commit comments