Skip to content

Commit

Permalink
Fix comments (#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
liurenjie1024 authored Jun 27, 2024
1 parent 594338a commit 4615429
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1956,10 +1956,12 @@ case class GpuHashAggregateExec(
truncatedString(allAggregateExpressions, "[", ", ", "]", maxFields)
val outputString = truncatedString(output, "[", ", ", "]", maxFields)
if (verbose) {
s"$nodeName (keys=$keyString, functions=$functionString, output=$outputString)"
s"$nodeName (keys=$keyString, functions=$functionString, output=$outputString) " +
s"""${loreArgs.mkString(", ")}"""
} else {
s"$nodeName (keys=$keyString, functions=$functionString)," +
s" filters=${aggregateExpressions.map(_.filter)})"
s" filters=${aggregateExpressions.map(_.filter)})" +
s""" ${loreArgs.mkString(", ")}"""
}
}
//
Expand Down

0 comments on commit 4615429

Please sign in to comment.