MaxGekk commented on a change in pull request #25980:
[WIP][SPARK-29296][BUILD][CORE] Remove use of .par to make 2.13 support easier;
add scala-2.13 profile to enable pulling in par collections library separately,
for the future
URL: https://github.com/apache/spark/pull/25980#discussion_r329990319
##########
File path:
sql/catalyst/src/test/scala/org/apache/spark/sql/catalyst/expressions/CastSuite.scala
##########
@@ -113,7 +115,7 @@ class CastSuite extends SparkFunSuite with
ExpressionEvalHelper {
}
test("cast string to timestamp") {
- ALL_TIMEZONES.par.foreach { tz =>
+ new ParVector(ALL_TIMEZONES.toVector).foreach { tz =>
Review comment:
`ALL_TIMEZONES` is `Seq` here. Maybe, `ParSeq` instead of `ParVector`?
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]