Skip to content

Commit

Permalink
nit
Browse files Browse the repository at this point in the history
  • Loading branch information
zhengruifeng committed Oct 10, 2024
1 parent 44287ef commit 93e3fb5
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,8 @@ case class KnownNotContainsNull(child: Expression) extends TaggingExpression {
override def dataType: DataType =
child.dataType.asInstanceOf[ArrayType].copy(containsNull = false)

override protected def doGenCode(ctx: CodegenContext, ev: ExprCode): ExprCode = {
override protected def doGenCode(ctx: CodegenContext, ev: ExprCode): ExprCode =
child.genCode(ctx)
}

override protected def withNewChildInternal(newChild: Expression): KnownNotContainsNull =
copy(child = newChild)
Expand Down

0 comments on commit 93e3fb5

Please sign in to comment.