waitingkuo commented on issue #3166:
URL:
https://github.com/apache/arrow-datafusion/issues/3166#issuecomment-1215832724
do we have interval for now?
```bash
select '00:00:00'::interval;
NotImplemented("Unsupported SQL type Interval")
```
but this works
```bash
❯ select interval '1 second';
+------------------------------------------------+
| IntervalDayTime("1000") |
+------------------------------------------------+
| 0 years 0 mons 0 days 0 hours 0 mins 1.00 secs |
+------------------------------------------------+
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]