itholic commented on code in PR #48651:
URL: https://github.com/apache/spark/pull/48651#discussion_r1815994121
##########
python/pyspark/sql/tests/test_connect_compatibility.py:
##########
@@ -249,7 +267,22 @@ def test_spark_session_compatibility(self):
"""Test SparkSession compatibility between classic and connect."""
expected_missing_connect_properties = {"sparkContext"}
expected_missing_classic_properties = {"is_stopped", "session_id"}
- expected_missing_connect_methods = {"newSession"}
+ expected_missing_connect_methods = {
+ "addArtifact",
+ "addArtifacts",
+ "addTag",
+ "clearProgressHandlers",
+ "clearTags",
+ "copyFromLocalToFs",
+ "getTags",
+ "interruptAll",
+ "interruptOperation",
+ "interruptTag",
+ "newSession",
+ "registerProgressHandler",
+ "removeProgressHandler",
+ "removeTag",
+ }
Review Comment:
Now the compatibility check respect the `ONLY_SUPPORTED_WITH_SPARK_CONNECT`.
cc @HyukjinKwon @hvanhovell FYI
--
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]