yashmayya commented on PR #14089: URL: https://github.com/apache/pinot/pull/14089#issuecomment-2376653624
I've removed the polymorphic division function implementation because that breaks backward compatibility for the v1 query engine. `select 1 / 2 from mytable` currently returns `0.5` in v1 and with the polymorphic function changes it would return `0` (which is actually the SQL compliant result, and is also the returned result in the v2 engine with or without these changes due to Calcite based return type inference of the standard division operator). -- 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]
