You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Function from_ieee754_32 produces different error output between Presto and Velox. Error mismatch causes fuzzer failures and has to be added to skip list for.
Reproduction
Presto:
presto:di> select from_ieee754_32(VARBINARY '\4BD[m&c_t3ws[uOn=A<el$]mb_Jc(30nZ6@jbL9&H');
Query 20250304_231231_00057_rd7dj failed: Input floating-point value must be exactly 4 bytes long
Velox:
presto:di> select from_ieee754_32(c0) from (values (VARBINARY '\4BD[m&c_t3ws[uOn=A<el$]mb_Jc(30nZ6@jbL9&H')) t(c0);
Query 20250304_231259_00058_rd7dj failed: input.size() == kTypeLength (42 vs. 4) Input floating-point value must be exactly 4 bytes long Top-level Expression: presto.default.from_ieee754_32(field)
The text was updated successfully, but these errors were encountered:
Description
Function
from_ieee754_32
produces different error output between Presto and Velox. Error mismatch causes fuzzer failures and has to be added to skip list for.Reproduction
Presto:
Velox:
The text was updated successfully, but these errors were encountered: