dilipbiswal commented on issue #25331: [SPARK-27768][SQL] Support Infinity/NaN-related float/double literals case-insensitively URL: https://github.com/apache/spark/pull/25331#issuecomment-521431770 Hello @DylanGuedes Don't think its related to case sensitivity. I have not looked at it in detail, but from a cursory look it seems like we are not able to promote the col2 values to a common type in this code path. Removing windowing all together, the following fails : ``` spark-sql> select * from (VALUES(1,1),(2,2),(3,'NaN'),(4,3),(5,4)); Error in query: incompatible types found in column col2 for inline table; line 1 pos 15 ```
---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
