aditya0811 commented on issue #12367:
URL: https://github.com/apache/pinot/issues/12367#issuecomment-1973584832

   Hey Jackie, when you say expected result is wrong, you mean the comparison 
in the case block in L721 in CaseTransformFunctionTest.java?
   ```     
    case FLOAT_SV_COLUMN:
             switch (type) {
               case EQUALS:
                 results[i] = _floatSVValues[i] == 
_floatSVValues[INDEX_TO_COMPARE];
                 break;
               case NOT_EQUALS:
                 results[i] = _floatSVValues[i] != 
_floatSVValues[INDEX_TO_COMPARE];
                 break;
               case GREATER_THAN:
                 results[i] = _floatSVValues[i] > 
_floatSVValues[INDEX_TO_COMPARE];
                 break;
               case GREATER_THAN_OR_EQUAL:
                 results[i] = _floatSVValues[i] >= 
_floatSVValues[INDEX_TO_COMPARE];
                 break;
               case LESS_THAN:
                 results[i] = _floatSVValues[i] < 
_floatSVValues[INDEX_TO_COMPARE];
                 break;
               case LESS_THAN_OR_EQUAL:
                 results[i] = _floatSVValues[i] <= 
_floatSVValues[INDEX_TO_COMPARE];
                 break;
   ```
   


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