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
is_nan()
Fully reproducible code snippet
transpile("SELECT is_nan(DOUBLE 'NaN')", read="trino", write="spark")[0]
Results in
SELECT IS_NAN(CAST('NaN' AS DOUBLE))
But should result in:
SELECT ISNAN(CAST('NaN' AS DOUBLE))
Official Documentation Please include links to official SQL documentation related to your issue. https://spark.apache.org/docs/latest/api/sql/index.html#isnan
The text was updated successfully, but these errors were encountered:
@dmelchor-stripe thanks for these issues, they are relatively simple, feel free to make prs in the future
Sorry, something went wrong.
9787329
Fix: trino->spark is_nan closes #1964
3461e06
No branches or pull requests
Fully reproducible code snippet
Results in
But should result in:
Official Documentation
Please include links to official SQL documentation related to your issue.
https://spark.apache.org/docs/latest/api/sql/index.html#isnan
The text was updated successfully, but these errors were encountered: