Skip to content

Commit 828603d

Browse files
HyukjinKwondongjoon-hyun
authored andcommitted
[SPARK-32876][SQL] Change default fallback versions to 3.0.1 and 2.4.7 in HiveExternalCatalogVersionsSuite
### What changes were proposed in this pull request? The Jenkins job fails to get the versions. This was fixed by adding temporary fallbacks at #28536. This still doesn't work without the temporary fallbacks. See #29694 This PR adds new fallbacks since 2.3 is EOL and Spark 3.0.1 and 2.4.7 are released. ### Why are the changes needed? To test correctly in Jenkins. ### Does this PR introduce _any_ user-facing change? No, dev-only ### How was this patch tested? Jenkins and GitHub Actions builds should test. Closes #29748 from HyukjinKwon/SPARK-32876. Authored-by: HyukjinKwon <gurwls223@apache.org> Signed-off-by: Dongjoon Hyun <dongjoon@apache.org> (cherry picked from commit 0696f04) Signed-off-by: Dongjoon Hyun <dongjoon@apache.org>
1 parent d4d2f5c commit 828603d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sql/hive/src/test/scala/org/apache/spark/sql/hive/HiveExternalCatalogVersionsSuite.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ object PROCESS_TABLES extends QueryTest with SQLTestUtils {
243243
.filter(_ < org.apache.spark.SPARK_VERSION)
244244
} catch {
245245
// do not throw exception during object initialization.
246-
case NonFatal(_) => Seq("2.3.4", "2.4.5") // A temporary fallback to use a specific version
246+
case NonFatal(_) => Seq("3.0.1", "2.4.7") // A temporary fallback to use a specific version
247247
}
248248
}
249249

0 commit comments

Comments
 (0)