We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 604aa1b commit 20fb01bCopy full SHA for 20fb01b
python/pyspark/sql/tests/test_udf.py
@@ -326,7 +326,6 @@ def test_udf_with_order_by_and_limit(self):
326
my_copy = udf(lambda x: x, IntegerType())
327
df = self.spark.range(10).orderBy("id")
328
res = df.select(df.id, my_copy(df.id).alias("copy")).limit(1)
329
- res.explain(True)
330
self.assertEqual(res.collect(), [Row(id=0, copy=0)])
331
332
def test_udf_registration_returns_udf(self):
0 commit comments