LuciferYang commented on code in PR #41005:
URL: https://github.com/apache/spark/pull/41005#discussion_r1200788634
##########
connector/connect/client/jvm/src/test/scala/org/apache/spark/sql/ClientE2ETestSuite.scala:
##########
@@ -867,6 +872,71 @@ class ClientE2ETestSuite extends RemoteSparkSession with
SQLHelper {
assert(!df.filter(df("_2").endsWith(suffix)).isEmpty)
}
}
+
+ test("interrupt all - background queries, foreground interrupt") {
Review Comment:
We can specify the modules to be compiled by using `-pl`, for example, if
only the connect server module has been changed, it can be compiled using the
following command:
```
build/mvn clean install -pl connector/connect/server -DskipTests
```
After that, we can re run the test using
```
build/mvn test -pl connector/connect/client/jvm -Dtest=none
-DwildcardSuites=org.apache.spark.sql.ClientE2ETestSuite
```
And if only the `connector/connect/client/jvm` module has been changed, then
we can run test using above command directly.
Never mind, I'll continue investigating this issue later :)
It's already late in my time zone, so I'll go to bed first.
--
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]