zhtaoxiang opened a new pull request, #11493:
URL: https://github.com/apache/pinot/pull/11493

   Fix NumericalFilterOptimizer for float datatype.
   Specifically, do not rewrite range operator since double has higher 
precision than float. If we do, we may introduce problems. For example, with 
the previous logic, "> 0.05" will be converted into ">= 0.05000000074505806". 
When the query reaches a server, the server will convert it to ">= 0.05" (lose 
some precision) in ColumnValueSegmentPruner#pruneRangePredicate, which is 
incorrect.
   
   


-- 
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]

Reply via email to