Jackie-Jiang opened a new pull request, #9385: URL: https://github.com/apache/pinot/pull/9385
In standard sql, implicit cast between number, string, binary is not allowed. Trying to support it can lead to ambiguous semantic and unnecessary overhead. We have observed performance regression after #9287. This PR removes the implicit cast between number, string and binary. The explicit conversion is still supported with `CAST` transform function. ## Backward Incompatible Implicit cast between number, string, binary is no longer allowed. Use `CAST` if the conversion is needed. -- 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]
