Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[SPARK-42653][CONNECT][FOLLOW-UP] Fix Scala 2.13 build failure by exp…
…licit Seq conversion ### What changes were proposed in this pull request? This PR proposes to add `toSeq` to work around Scala 2.13 build at `getCrcValues`. ### Why are the changes needed? The build in the master branch fails in Scala 2.13 build: ``` [error] /home/runner/work/spark/spark/connector/connect/client/jvm/src/test/scala/org/apache/spark/sql/connect/client/ArtifactSuite.scala:87:11: type mismatch; [error] found : scala.collection.mutable.Buffer[Long] [error] required: Seq[Long] [error] .map(_.toLong) [error] ^ ``` https://github.com/apache/spark/actions/runs/4323142317/jobs/7546408812 ### Does this PR introduce _any_ user-facing change? No, dev-only. ### How was this patch tested? CI in this PR should test it out. Closes #40267 from HyukjinKwon/SPARK-42653-followup. Authored-by: Hyukjin Kwon <gurwls223@apache.org> Signed-off-by: Hyukjin Kwon <gurwls223@apache.org>
- Loading branch information