mghildiy commented on issue #15255:
URL: https://github.com/apache/pinot/issues/15255#issuecomment-2746047320

   So I was able to insert values, with this csv content:
   
   ```
   floatfield
   1.43
   ,
   ```
   
   Query 'SELECT roundDecimal(floatfield, 1) FROM testnullfloat'  errors out:
   
   `java.lang.NumberFormatException: Character I is neither a decimal digit 
number, decimal point, nor "e" notation exponential mark.`
   
   Code responsible is:
   
   `BigDecimal.valueOf(leftValues[i]`
   
   leftValues[i] is -inifnity for null value.
   Need to handle this correctly.


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