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
Function codepoint has different error output between Velox and Presto.
codepoint
Velox:
presto:di> select codepoint(c0) from (values (0.8959898501634598)) t(c0); Query 20250304_235340_00067_rd7dj failed: line 1:8: Unexpected parameters (double) for function codepoint. Expected: codepoint(varchar(1)) select codepoint(c0) from (values (0.8959898501634598)) t(c0)
Presto:
presto:tpch> select codepoint(0.8959898501634598); Query 20250304_235315_15219_hjmrr failed: line 1:8: Unexpected parameters (decimal(16,16)) for function codepoint. Expected: codepoint(varchar(1)) select codepoint(0.8959898501634598)
The text was updated successfully, but these errors were encountered:
Actual issue caused by fuzzer default null handling: #12548
Sorry, something went wrong.
No branches or pull requests
Description
Function
codepoint
has different error output between Velox and Presto.Reproduction
Velox:
Presto:
The text was updated successfully, but these errors were encountered: