We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Even though Date64 can be cast into Timestamp inside arrow-cast, DataFusion doesn't allow this.
Date64
Timestamp
❯ select arrow_cast(now(), 'Date64') < arrow_cast('2022-02-02 02:02:02', 'Timestamp(Nanosecond, None)'); Error during planning: Cannot infer common argument type for comparison operation Date64 < Timestamp(Nanosecond, None)
❯ select arrow_cast(now(), 'Date64') < arrow_cast('2022-02-02 02:02:02', 'Timestamp(Nanosecond, None)'); +-------------------------------------+ | now() < Utf8("2022-02-02 02:02:02") | +-------------------------------------+ | false | +-------------------------------------+ 1 row in set. Query took 0.019 seconds.
No response
The text was updated successfully, but these errors were encountered:
Added to list on #3148
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Describe the bug
Even though
Date64
can be cast intoTimestamp
inside arrow-cast, DataFusion doesn't allow this.To Reproduce
Expected behavior
Additional context
No response
The text was updated successfully, but these errors were encountered: