Row.Implicit(GenericRow to Row) Operator

Definition

Returns schema-less Row which can happen within chained UDFs (same behavior as PySpark).

public static implicit operator Microsoft.Spark.Sql.Row (Microsoft.Spark.Sql.GenericRow genericRow);
static member op_Implicit : Microsoft.Spark.Sql.GenericRow -> Microsoft.Spark.Sql.Row
Public Shared Widening Operator CType (genericRow As GenericRow) As Row

Parameters

genericRow
GenericRow

Returns

Row

schema-less Row

Remarks

The use of this conversion operator is discouraged except for the UDF that returns a Row object.

Applies to