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
Somewhat related to #12892 but different. The following query fails in DF 45:
select to_unixtime(arrow_cast(to_timestamp('2023-01-14T01:01:30'), 'Timestamp(Second, Some("+05:30"))'));
The issue is in invoke_batch where it will match only DataType::Timestamp(_, None), not DataType::Timestamp(_, tz)
DataType::Timestamp(_, None)
DataType::Timestamp(_, tz)
Run sql.
to_unixtime should work regardless of whether a tz was provided or not
No response
The text was updated successfully, but these errors were encountered:
take
Sorry, something went wrong.
Omega359
Successfully merging a pull request may close this issue.
Describe the bug
Somewhat related to #12892 but different. The following query fails in DF 45:
The issue is in invoke_batch where it will match only
DataType::Timestamp(_, None)
, notDataType::Timestamp(_, tz)
To Reproduce
Run sql.
Expected behavior
to_unixtime should work regardless of whether a tz was provided or not
Additional context
No response
The text was updated successfully, but these errors were encountered: