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
What happened:
When querying dataset containing column of Float64/32 type nested in a Tuple, the query fails in case the value is NaN/Inf with the error:
json: unsupported value: NaN: Could not process SQL results json: unsupported value: +Inf: Could not process SQL results
How to reproduce it:
Reproducible query within the datasource:
SELECT tuple(NaN) SELECT tuple(Inf) SELECT tuple(-Inf)
It works as expected when not in a tuple:
SELECT NaN, Inf, -Inf
The text was updated successfully, but these errors were encountered:
Thanks for submitting this issue. It's possible the tuple is being interpreted as JSON and failing to convert in the Go backend
Sorry, something went wrong.
No branches or pull requests
What happened:
When querying dataset containing column of Float64/32 type nested in a Tuple, the query fails in case the value is NaN/Inf with the error:
How to reproduce it:
Reproducible query within the datasource:
It works as expected when not in a tuple:
The text was updated successfully, but these errors were encountered: