hvanhovell commented on code in PR #47688:
URL: https://github.com/apache/spark/pull/47688#discussion_r1719251585


##########
python/pyspark/sql/functions/builtin.py:
##########
@@ -18787,7 +18771,7 @@ def exists(col: "ColumnOrName", f: Callable[[Column], 
Column]) -> Column:
     |        true|
     +------------+
     """
-    return _invoke_higher_order_function("ArrayExists", [col], [f])
+    return _invoke_higher_order_function("exists", [col], [f])

Review Comment:
   ...and all functions used on the scala side...
   
   We can put it in a different namespace (e.g. builtin) - much like the 
internal thing we recently added - but that is for a different PR.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to