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
Value mismatch between Presto/Velox. Presto appears to handle infinity correctly.
presto> SELECT inverse_weibull_cdf((infinity() - (c0 + cosh(c1))), asin(DOUBLE '0.5646822957787663'), sqrt(ceiling(c2))) from (values (0.24525619437918067, 0.9423456590157002, 0.5297509685624391)) t(c0, c1, c2); _col0 ---------- Infinity presto:di> SELECT inverse_weibull_cdf((infinity() - (c0 + cosh(c1))), asin(DOUBLE '0.5646822957787663'), sqrt(ceiling(c2))) from (values (0.24525619437918067, 0.9423456590157002, 0.5297509685624391)) t(c0, c1, c2); _col0 ------------------- 0.600048250724079 (1 row)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
Value mismatch between Presto/Velox. Presto appears to handle infinity correctly.
Error Reproduction
The text was updated successfully, but these errors were encountered: