cloud-fan commented on a change in pull request #27608: [MINOR][SQL]
Distinguish Cast and AnsiCast in toString
URL: https://github.com/apache/spark/pull/27608#discussion_r380230808
##########
File path:
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/expressions/Cast.scala
##########
@@ -251,7 +251,10 @@ abstract class CastBase extends UnaryExpression with
TimeZoneAwareExpression wit
def dataType: DataType
- override def toString: String = s"cast($child as ${dataType.simpleString})"
+ override def toString: String = {
+ val ansi = if (ansiEnabled) "ansi" else ""
Review comment:
`ansi_`?
----------------------------------------------------------------
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]