You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/expressions/higherOrderFunctions.scala
+10-12Lines changed: 10 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -443,26 +443,24 @@ case class ArrayAggregate(
443
443
overridedefprettyName:String="aggregate"
444
444
}
445
445
446
-
/**
447
-
* Transform elements in an array using the transform function. This is similar to
448
-
* a `map` in functional programming.
449
-
*/
450
446
// scalastyle:off line.size.limit
451
447
@ExpressionDescription(
452
-
usage ="_FUNC_(expr, func) - Merges the two given arrays, element-wise, into a single array using function. If one array is shorter, nulls are appended at the end to match the length of the longer array, before applying function.",
448
+
usage ="_FUNC_(left, right, func) - Merges the two given arrays, element-wise, into a single array using function. If one array is shorter, nulls are appended at the end to match the length of the longer array, before applying function.",
0 commit comments