jubins commented on code in PR #56852:
URL: https://github.com/apache/spark/pull/56852#discussion_r3503145183


##########
python/pyspark/sql/tests/test_functions.py:
##########
@@ -82,9 +82,7 @@ def test_function_parity(self):
         missing_in_py = jvm_fn_set.difference(py_fn_set)
 
         # Functions that we expect to be missing in python until they are 
added to pyspark
-        expected_missing_in_py = {
-            "timestamp_nanos"
-        }  # SPARK-57526: PySpark support tracked as a follow-up
+        expected_missing_in_py: set = set()

Review Comment:
   makes sense, removed the `: set` type annotation, now just 
`expected_missing_in_py = set()`



-- 
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