Commit 13545a4
committed
### What changes were proposed in this pull request?
This PR aims to fix `PythonPipelineSuite` flakiness via `Set` instead of `Seq` in multiple places.
### Why are the changes needed?
Currently, `PythonPipelineSuite` is flaky like the following. We should fix this flakiness.
- https://github.com/apache/spark/actions/runs/19396864076/job/55498096472
```
[info] - referencing internal datasets *** FAILED *** (821 milliseconds)
[info] List(`spark_catalog`.`default`.`src`, `spark_catalog`.`default`.`c`, `spark_catalog`.`default`.`a`) did not equal List(`spark_catalog`.`default`.`src`, `spark_catalog`.`default`.`a`, `spark_catalog`.`default`.`c`) (PythonPipelineSuite.scala:366)
```
### Does this PR introduce _any_ user-facing change?
No.
### How was this patch tested?
Pass the CIs.
### Was this patch authored or co-authored using generative AI tooling?
No.
Closes #53080 from dongjoon-hyun/SPARK-XXX.
Authored-by: Dongjoon Hyun <[email protected]>
Signed-off-by: Dongjoon Hyun <[email protected]>
1 parent 2e4708e commit 13545a4
File tree
1 file changed
+6
-3
lines changed- sql/connect/server/src/test/scala/org/apache/spark/sql/connect/pipelines
1 file changed
+6
-3
lines changedsql/connect/server/src/test/scala/org/apache/spark/sql/connect/pipelines/PythonPipelineSuite.scala
Lines changed: 6 additions & 3 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
364 | 364 | | |
365 | 365 | | |
366 | 366 | | |
367 | | - | |
| 367 | + | |
368 | 368 | | |
369 | 369 | | |
370 | 370 | | |
371 | | - | |
| 371 | + | |
| 372 | + | |
| 373 | + | |
372 | 374 | | |
373 | 375 | | |
374 | 376 | | |
| |||
722 | 724 | | |
723 | 725 | | |
724 | 726 | | |
725 | | - | |
| 727 | + | |
| 728 | + | |
726 | 729 | | |
727 | 730 | | |
728 | 731 | | |
| |||
0 commit comments