aditya0811 commented on issue #12367: URL: https://github.com/apache/pinot/issues/12367#issuecomment-1974871309
Hey Jackie, sorry I am not able to follow. Lets say `_floatSVValues[INDEX_TO_COMPARE] = 0.1f`. In the case block in L721 in `CaseTransformFunctionTest` we are considering this as float `0.1f`. Lets say `_floatSVValues[i]=0.2f`. So the comparison is happening in the case block as, considering `GREATER_THAN_OR_EQUAL` `0.2f >= 0.1f` The `_floatSVValues[INDEX_TO_COMPARE]` when considered as `LiteralTransformFunction` is getting parsed as double i.e. `0.1d`. So now the comparison is happening as `(double) 0.2f >= 0.1d` ? -- 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: commits-unsubscr...@pinot.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For additional commands, e-mail: commits-h...@pinot.apache.org