Functions.ArrayRepeat Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
ArrayRepeat(Column, Int32) |
Creates an array containing the |
ArrayRepeat(Column, Column) |
Creates an array containing the |
ArrayRepeat(Column, Int32)
Creates an array containing the left
argument repeated the count
number of times.
[Microsoft.Spark.Since("2.4.0")]
public static Microsoft.Spark.Sql.Column ArrayRepeat (Microsoft.Spark.Sql.Column left, int count);
[<Microsoft.Spark.Since("2.4.0")>]
static member ArrayRepeat : Microsoft.Spark.Sql.Column * int -> Microsoft.Spark.Sql.Column
Public Shared Function ArrayRepeat (left As Column, count As Integer) As Column
Parameters
- left
- Column
Left column expression
- count
- Int32
Number of times to repeat
Returns
Column object
- Attributes
Applies to
ArrayRepeat(Column, Column)
Creates an array containing the left
argument repeated the number of times given by
the right
argument.
[Microsoft.Spark.Since("2.4.0")]
public static Microsoft.Spark.Sql.Column ArrayRepeat (Microsoft.Spark.Sql.Column left, Microsoft.Spark.Sql.Column right);
[<Microsoft.Spark.Since("2.4.0")>]
static member ArrayRepeat : Microsoft.Spark.Sql.Column * Microsoft.Spark.Sql.Column -> Microsoft.Spark.Sql.Column
Public Shared Function ArrayRepeat (left As Column, right As Column) As Column
Parameters
- left
- Column
Left column expression
- right
- Column
Right column expression
Returns
Column object
- Attributes