File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ setMethod("window.partitionBy",
4040 windowSpec(
4141 callJStatic(" org.apache.spark.sql.expressions.Window" ,
4242 " partitionBy" ,
43- col ,
43+ x ,
4444 list (... )))
4545 })
4646
@@ -52,7 +52,7 @@ setMethod("window.partitionBy",
5252setMethod ("window.partitionBy ",
5353 signature(x = " Column" ),
5454 function (x , ... ) {
55- jcols <- lapply(list (col , ... ), function (c ) {
55+ jcols <- lapply(list (x , ... ), function (c ) {
5656 c @ jc
5757 })
5858 windowSpec(
@@ -84,7 +84,7 @@ setMethod("window.orderBy",
8484 windowSpec(
8585 callJStatic(" org.apache.spark.sql.expressions.Window" ,
8686 " orderBy" ,
87- col ,
87+ x ,
8888 list (... )))
8989 })
9090
@@ -96,7 +96,7 @@ setMethod("window.orderBy",
9696setMethod ("window.orderBy ",
9797 signature(x = " Column" ),
9898 function (x , ... ) {
99- jcols <- lapply(list (col , ... ), function (c ) {
99+ jcols <- lapply(list (x , ... ), function (c ) {
100100 c @ jc
101101 })
102102 windowSpec(
You can’t perform that action at this time.
0 commit comments