Skip to content

Commit 1795306

Browse files
shujingyang-dbzhengruifeng
authored andcommitted
[SPARK-53323][PYTHON][CONNECT] Enable Spark Connect tests for df.asTable() in Arrow UDTF
### What changes were proposed in this pull request? As titled. ### Why are the changes needed? Test-only change ### Does this PR introduce _any_ user-facing change? No ### How was this patch tested? unit tests ### Was this patch authored or co-authored using generative AI tooling? No Closes #52320 from shujingyang-db/support-as-table-spark-connect. Authored-by: Shujing Yang <[email protected]> Signed-off-by: Ruifeng Zheng <[email protected]>
1 parent 1ec647e commit 1795306

File tree

1 file changed

+1
-9
lines changed

1 file changed

+1
-9
lines changed

python/pyspark/sql/tests/connect/arrow/test_parity_arrow_udtf.py

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,7 @@
2222

2323

2424
class ArrowUDTFParityTests(ArrowUDTFTestsMixin, ReusedConnectTestCase):
25-
# TODO(SPARK-53323): Support table arguments in Spark Connect Arrow UDTFs
26-
@unittest.skip("asTable() is not supported in Spark Connect")
27-
def test_arrow_udtf_with_table_argument_basic(self):
28-
super().test_arrow_udtf_with_table_argument_basic()
29-
30-
# TODO(SPARK-53323): Support table arguments in Spark Connect Arrow UDTFs
31-
@unittest.skip("asTable() is not supported in Spark Connect")
32-
def test_arrow_udtf_with_table_argument_and_scalar(self):
33-
super().test_arrow_udtf_with_table_argument_and_scalar()
25+
pass
3426

3527

3628
if __name__ == "__main__":

0 commit comments

Comments
 (0)