alamb opened a new issue, #15317:
URL: https://github.com/apache/datafusion/issues/15317
### Is your feature request related to a problem or challenge?
@svranesevic implemented basic support for Min/Max Duration types in this
PR: ❤
- https://github.com/apache/datafusion/pull/153
alamb commented on issue #15317:
URL: https://github.com/apache/datafusion/issues/15317#issuecomment-2737899174
I think this is a pretty good first issue as it is well described and self
contained
--
This is an automated message from the Apache Git Service.
To respond to the message, plea
alamb commented on issue #15317:
URL: https://github.com/apache/datafusion/issues/15317#issuecomment-2737914843
BTW you can make durations in SQL like
```sql
> create or replace table foo as select unnest (generate_series(now(), now()
+ interval '1 year', interval '1 day'))