yashmayya commented on PR #16885: URL: https://github.com/apache/pinot/pull/16885#issuecomment-3331358095
It's string `"null"` - the transform functions never use actual `null` values but always the null value placeholders and only use the null bitmap to keep track of actual `null` values. > I'd suggest we handle the null case in CastTransformFunction instead of ArrayCopyUtils. The util is not supposed to handle this Makes sense, I've moved the handling to `CastTransformFunction` by replacing the null value placeholders with actual `null`s so that the util can simply skip over those values. -- 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]
