diogobaeder commented on issue #8977: URL: https://github.com/apache/pinot/issues/8977#issuecomment-1166358315
Still following the example query above, this for example works fine: ``` select cast('1.234' as double) as summed_numbers from some_table limit 1 ``` and this works fine too: ``` select sum(numbers) as summed_numbers from some_table limit 1 ``` although in the latest case the true type is not matching the declared data type for the column. -- 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: commits-unsubscr...@pinot.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For additional commands, e-mail: commits-h...@pinot.apache.org