cloud-fan commented on a change in pull request #26114: [SPARK-29468][SQL]
Change Literal.sql to be correct for floats.
URL: https://github.com/apache/spark/pull/26114#discussion_r338164284
##########
File path:
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/expressions/literals.scala
##########
@@ -370,7 +390,7 @@ case class Literal (value: Any, dataType: DataType)
extends LeafExpression {
case _ if v.isNaN => "'NaN'"
case Float.PositiveInfinity => "'Infinity'"
case Float.NegativeInfinity => "'-Infinity'"
- case _ => v
+ case _ => s"'$v'"
Review comment:
ah good catch!
----------------------------------------------------------------
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]