You are viewing a plain text version of this content. The canonical link for it is here.
Posted to reviews@spark.apache.org by GitBox <gi...@apache.org> on 2019/10/23 11:10:45 UTC

[GitHub] [spark] HyukjinKwon commented on a change in pull request #26114: [SPARK-29468][SQL] Change Literal.sql to be correct for floats.

HyukjinKwon 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_r337985181
 
 

 ##########
 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:
   No big deal but it would be just `val castedValue = s"'$v'"`
   
   ```
   scala> s"'${Double.NaN}'"
   res0: String = 'NaN'
   
   scala> s"'${Float.NegativeInfinity}'"
   res1: String = '-Infinity'
   
   scala> s"'${Float.PositiveInfinity}'"
   res2: String = 'Infinity'
   ```

----------------------------------------------------------------
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:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org