Skip to content

Commit a170f43

Browse files
committed
fix long line
1 parent 29cc149 commit a170f43

File tree

1 file changed

+2
-1
lines changed
  • sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/analysis

1 file changed

+2
-1
lines changed

sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/analysis/Analyzer.scala

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -562,7 +562,8 @@ class Analyzer(
562562
registry.lookupFunction(name, children) match {
563563
// We get an aggregate function built based on AggregateFunction2 interface.
564564
// So, we wrap it in AggregateExpression2.
565-
case agg2: AggregateFunction2 => AggregateExpression2(agg2, Complete, isDistinct)
565+
case agg2: AggregateFunction2 =>
566+
AggregateExpression2(agg2, Complete, isDistinct)
566567
// Currently, our old aggregate function interface supports SUM(DISTINCT ...)
567568
// and COUTN(DISTINCT ...).
568569
case sumDistinct: SumDistinct => sumDistinct

0 commit comments

Comments
 (0)