-
-
Notifications
You must be signed in to change notification settings - Fork 0
Closed
Labels
enhancementNew feature or requestNew feature or request
Description
Thanks for this plugin!
As the example says:
dateutil_parse_fuzzy("This is due 10 september") returns 2020-09-10T00:00:00 (but will start returning the 2021 version of that if the year is 2021).
Maybe dateutil doesn't actually support this but it would be really nice to be able to give a reference time to dateutil_parse_fuzzy and probably other functions. For example, suppose I had a table like:
create table times (t datetime);
insert into times values (datetime('now')), (datetime('now', '-1 year')), (datetime('now', '-3 years'));
It would be nice to be able to do something like:
select t, dateutil_parse_fuzzy("This is due 10 september", t) from times
And have dateutil_parse_fuzzy work with t as its reference point.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request