Jackie-Jiang commented on issue #12367: URL: https://github.com/apache/pinot/issues/12367#issuecomment-1980200987
When casting `0.1f` to `double`, the result is actually `0.10000000149011612`, which is not equal to `0.1d`. We might hit this scenario because the literal is parsed as double instead of float. I guess if we send the literal as `CAST(0.1 AS FLOAT)` it might fix the issue -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
