Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for TIME literal values #2883

Closed
Tracked by #706
andygrove opened this issue Jul 12, 2022 · 1 comment · Fixed by #3010
Closed
Tracked by #706

Add support for TIME literal values #2883

andygrove opened this issue Jul 12, 2022 · 1 comment · Fixed by #3010
Labels
enhancement New feature or request

Comments

@andygrove
Copy link
Member

Is your feature request related to a problem or challenge? Please describe what you are trying to do.
We have support for DATE literals:

SELECT DATE '2001-12-31' AS "T";
+------------+
| T          |
+------------+
| 2001-12-31 |
+------------+

However, we do not have support for TIME literals:

SELECT TIME '08:08:00.091' AS "T";
NotImplemented("Unsupported SQL type Time")

Describe the solution you'd like
Add support for TIME literal

Describe alternatives you've considered
None

Additional context
None

@andygrove
Copy link
Member Author

Depends on apache/arrow-rs#2053

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant