Skip to content

Commit 966072e

Browse files
committed
Fix line-length.
1 parent 0c08516 commit 966072e

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/expressions/aggregate/CentralMomentAgg.scala

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,8 +130,10 @@ abstract class CentralMomentAgg(child: Expression) extends DeclarativeAggregate
130130
}
131131

132132
// Compute the population standard deviation of a column
133+
// scalastyle:off line.size.limit
133134
@ExpressionDescription(
134135
usage = "_FUNC_(x) - Returns the population standard deviation calculated from values of a group.")
136+
// scalastyle:on line.size.limit
135137
case class StddevPop(child: Expression) extends CentralMomentAgg(child) {
136138

137139
override protected def momentOrder = 2

0 commit comments

Comments
 (0)