HyukjinKwon commented on code in PR #44778:
URL: https://github.com/apache/spark/pull/44778#discussion_r1467362254


##########
python/pyspark/sql/tests/test_udf.py:
##########
@@ -935,7 +940,8 @@ def test_udf(a, b):
             ]
         ):
             with self.subTest(query_no=i):
-                assertDataFrameEqual(df, [Row(0), Row(101)])
+                if have_pyarrow:
+                    assertDataFrameEqual(df, [Row(0), Row(101)])

Review Comment:
   Can we avoid it since we don't need it when we compare PySpark DataFrame and 
PySpark Rows?



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