Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
WangGuangxin committed Oct 7, 2019
1 parent 25a3bb8 commit d21c683
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ import org.apache.spark.sql.types._
* @param child to compute central moments of.
*/
abstract class CentralMomentAgg(child: Expression)
extends DeclarativeAggregate with ImplicitCastInputTypes {
extends DeclarativeAggregate with ImplicitCastInputTypes with OrderIrrelevantAggs {

/**
* The central moment order to be computed.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,7 @@ case class EveryAgg(arg: Expression) extends UnevaluableBooleanAggBase(arg) {
false
""",
since = "3.0.0")
case class AnyAgg(arg: Expression) extends UnevaluableBooleanAggBase(arg)
with OrderIrrelevantAggs {
case class AnyAgg(arg: Expression) extends UnevaluableBooleanAggBase(arg) {
override def nodeName: String = "Any"
}

Expand Down

0 comments on commit d21c683

Please sign in to comment.