File tree 1 file changed +6
-4
lines changed
src/csharp/Microsoft.Spark/Sql
1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -90,16 +90,18 @@ public DataFrame Sum(params string[] colNames) =>
90
90
/// </summary>
91
91
/// <param name="pivotColumn">Name of the column to pivot</param>
92
92
/// <returns>New RelationalGroupedDataset object with pivot applied</returns>
93
- public RelationalGroupedDataset Pivot ( string pivotColumn ) => new RelationalGroupedDataset (
94
- ( JvmObjectReference ) _jvmObject . Invoke ( "pivot" , pivotColumn ) , _dataFrame ) ;
93
+ public RelationalGroupedDataset Pivot ( string pivotColumn ) =>
94
+ new RelationalGroupedDataset (
95
+ ( JvmObjectReference ) _jvmObject . Invoke ( "pivot" , pivotColumn ) , _dataFrame ) ;
95
96
96
97
/// <summary>
97
98
/// Pivots a column of the current DataFrame and performs the specified aggregation.
98
99
/// </summary>
99
100
/// <param name="pivotColumn">The column to pivot</param>
100
101
/// <returns>New RelationalGroupedDataset object with pivot applied</returns>
101
- public RelationalGroupedDataset Pivot ( Column pivotColumn ) => new RelationalGroupedDataset (
102
- ( JvmObjectReference ) _jvmObject . Invoke ( "pivot" , pivotColumn ) , _dataFrame ) ;
102
+ public RelationalGroupedDataset Pivot ( Column pivotColumn ) =>
103
+ new RelationalGroupedDataset (
104
+ ( JvmObjectReference ) _jvmObject . Invoke ( "pivot" , pivotColumn ) , _dataFrame ) ;
103
105
104
106
internal DataFrame Apply ( StructType returnType , Func < FxDataFrame , FxDataFrame > func )
105
107
{
You can’t perform that action at this time.
0 commit comments