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
bitwise_right_shift produces mismatching value between Velox/Presto.
bitwise_right_shift
(Velox followed by Presto)
presto:di> SELECT bitwise_right_shift(c0, (c1 - c2)) from (values (3310924350904134818, 468965400, 1464061230)) t(c0, c1, c2); _col0 ------- 0 (1 row) presto:di> SELECT bitwise_right_shift(3310924350904134818, (468965400 - 1464061230)); _col0 -------- 752817 (1 row)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
bitwise_right_shift
produces mismatching value between Velox/Presto.Reproduction
(Velox followed by Presto)
The text was updated successfully, but these errors were encountered: