Skip to content

Commit d250692

Browse files
author
Davies Liu
committed
fix conflict
1 parent 34234d4 commit d250692

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/pyspark/sql.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2599,7 +2599,7 @@ def __call__(self, *cols):
25992599
sc = SparkContext._active_spark_context
26002600
jcols = ListConverter().convert([_to_java_column(c) for c in cols],
26012601
sc._gateway._gateway_client)
2602-
jc = self._judf.apply(sc._jvm.Dsl.toColumns(jcols))
2602+
jc = self._judf.apply(sc._jvm.PythonUtils.toSeq(jcols))
26032603
return Column(jc)
26042604

26052605

0 commit comments

Comments
 (0)