Functions.Repeat(Column, Int32) 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.
Repeats a string column n
times, and returns it as a new string column.
public static Microsoft.Spark.Sql.Column Repeat(Microsoft.Spark.Sql.Column column, int n);
static member Repeat : Microsoft.Spark.Sql.Column * int -> Microsoft.Spark.Sql.Column
Public Shared Function Repeat (column As Column, n As Integer) As Column
Parameters
- column
- Column
Column to apply
- n
- Int32
Repeatation number
Returns
Column object