LuciferYang commented on code in PR #38874: URL: https://github.com/apache/spark/pull/38874#discussion_r1041852572
########## sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/expressions/collectionOperations.scala: ########## @@ -4600,3 +4600,44 @@ case class ArrayExcept(left: Expression, right: Expression) extends ArrayBinaryL override protected def withNewChildrenInternal( newLeft: Expression, newRight: Expression): ArrayExcept = copy(left = newLeft, right = newRight) } + +@ExpressionDescription( + usage = "_FUNC_(array) - Removes null values from the array.", + examples = """ + Examples: + > SELECT _FUNC_(array(1, 2, 3, null)); + [1,2,3] + """, + group = "array_funcs", + since = "3.4.0") +case class ArrayCompact(child: Expression) + extends UnaryExpression with ExpectsInputTypes with NullIntolerant { + override def inputTypes: Seq[AbstractDataType] = Seq(ArrayType) + override def dataType: DataType = child.dataType + + @transient private lazy val elementType: DataType = dataType.asInstanceOf[ArrayType].elementType + + override def nullSafeEval(array: Any): Any = { + val newArray = new Array[Any](array.asInstanceOf[ArrayData].numElements()) + var pos = 0 + array.asInstanceOf[ArrayData].foreach (elementType, (i, v) => + if (v != null ) { + newArray(pos) = v + pos += 1 + } + ) + new GenericArrayData(newArray.slice(0, pos)) + } + override def prettyName: String = "array_compact" + + override protected def doGenCode(ctx: CodegenContext, ev: ExprCode): ExprCode = { + + nullSafeCodeGen(ctx, ev, (array) => { Review Comment: nit: `(array)` -> `array` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org For additional commands, e-mail: reviews-h...@spark.apache.org