cloud-fan commented on a change in pull request #30440:
URL: https://github.com/apache/spark/pull/30440#discussion_r529248836
##########
File path:
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/expressions/Cast.scala
##########
@@ -98,6 +98,19 @@ object Cast {
case _ => false
}
+ def typeCheckFailureMessage(from: DataType, to: DataType): String = (from,
to) match {
+ case (_: NumericType, TimestampType) =>
+ // scalastyle:off line.size.limit
+ s"""
+ | cannot cast ${from.catalogString} to ${to.catalogString},
+ | you can enable the casting by setting
${SQLConf.LEGACY_ALLOW_CAST_NUMERIC_TO_TIMESTAMP.key}
Review comment:
shall we remove `LEGACY_ALLOW_CAST_NUMERIC_TO_TIMESTAMP`? It's true by
default and I don't see why it's needed since we have ansi mode.
----------------------------------------------------------------
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]