Github user cloud-fan commented on a diff in the pull request:

    https://github.com/apache/spark/pull/21537#discussion_r197245172
  
    --- Diff: 
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/expressions/Cast.scala
 ---
    @@ -1004,26 +1012,29 @@ case class Cast(child: Expression, dataType: 
DataType, timeZoneId: Option[String
       private[this] def castToIntervalCode(from: DataType): CastFunction = 
from match {
         case StringType =>
           (c, evPrim, evNull) =>
    -        s"""$evPrim = CalendarInterval.fromString($c.toString());
    +        code"""$evPrim = CalendarInterval.fromString($c.toString());
                if(${evPrim} == null) {
                  ${evNull} = true;
                }
              """.stripMargin
     
       }
     
    -  private[this] def decimalToTimestampCode(d: String): String =
    -    s"($d.toBigDecimal().bigDecimal().multiply(new 
java.math.BigDecimal(1000000L))).longValue()"
    -  private[this] def longToTimeStampCode(l: String): String = s"$l * 
1000000L"
    -  private[this] def timestampToIntegerCode(ts: String): String =
    -    s"java.lang.Math.floor((double) $ts / 1000000L)"
    -  private[this] def timestampToDoubleCode(ts: String): String = s"$ts / 
1000000.0"
    +  private[this] def decimalToTimestampCode(d: ExprValue): Block = {
    +    val block = code"new java.math.BigDecimal(1000000L)"
    +    code"($d.toBigDecimal().bigDecimal().multiply($block)).longValue()"
    +  }
    +  private[this] def longToTimeStampCode(l: ExprValue): Block = code"$l * 
1000000L"
    +  private[this] def timestampToIntegerCode(ts: ExprValue): Block =
    +    code"java.lang.Math.floor((double) $ts / 1000000L)"
    +  private[this] def timestampToDoubleCode(ts: ExprValue): Block =
    +    code"$ts / 1000000.0"
     
       private[this] def castToBooleanCode(from: DataType): CastFunction = from 
match {
         case StringType =>
    -      val stringUtils = StringUtils.getClass.getName.stripSuffix("$")
    +      val stringUtils = 
inline"${StringUtils.getClass.getName.stripSuffix("$")}"
    --- End diff --
    
    what's the difference between inline and code?


---

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

Reply via email to