singhpk234 commented on code in PR #36397:
URL: https://github.com/apache/spark/pull/36397#discussion_r861503390
##########
sql/catalyst/src/main/scala/org/apache/spark/sql/types/Decimal.scala:
##########
@@ -227,9 +227,9 @@ final class Decimal extends Ordered[Decimal] with
Serializable {
def toDebugString: String = {
if (decimalVal.ne(null)) {
- s"Decimal(expanded,$decimalVal,$precision,$scale})"
+ s"Decimal(expanded,$decimalVal,$precision,$scale)"
Review Comment:
[nit] can we indent as well to have space after comma.
```suggestion
s"Decimal(expanded, $decimalVal, $precision, $scale)"
```
--
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.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]