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 chr has different error output between Velox and Presto. Error causes fuzzer failures.
chr
Velox:
presto:di> select chr(c0) from (values (6182359718462173641) ) t(c0); Query 20250305_000203_00002_rd7dj failed: validCodePoint Not a valid Unicode code point: 6182359718462173641 Top-level Expression: presto.default.chr(field)
Presto:
presto> select chr(6182359718462173641); Query 20250305_000149_00001_w2c2g failed: Not a valid Unicode code point: 6182359718462173641
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
chr
has different error output between Velox and Presto. Error causes fuzzer failures.Reproduction
Velox:
Presto:
The text was updated successfully, but these errors were encountered: