Skip to content

Commit 43081c5

Browse files
committed
Fix minor formatting issue of SortAggregateExec.toString
1 parent 5b8e848 commit 43081c5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

sql/core/src/main/scala/org/apache/spark/sql/execution/aggregate/SortAggregateExec.scala

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -111,9 +111,9 @@ case class SortAggregateExec(
111111
private def toString(verbose: Boolean): String = {
112112
val allAggregateExpressions = aggregateExpressions
113113

114-
val keyString = Utils.truncatedString(groupingExpressions, "[", ",", "]")
115-
val functionString = Utils.truncatedString(allAggregateExpressions, "[", ",", "]")
116-
val outputString = Utils.truncatedString(output, "[", ",", "]")
114+
val keyString = Utils.truncatedString(groupingExpressions, "[", ", ", "]")
115+
val functionString = Utils.truncatedString(allAggregateExpressions, "[", ", ", "]")
116+
val outputString = Utils.truncatedString(output, "[", ", ", "]")
117117
if (verbose) {
118118
s"SortAggregate(key=$keyString, functions=$functionString, output=$outputString)"
119119
} else {

0 commit comments

Comments
 (0)