dongjoon-hyun commented on a change in pull request #31203:
URL: https://github.com/apache/spark/pull/31203#discussion_r564838525
##########
File path:
sql/hive/src/main/scala/org/apache/spark/sql/hive/client/IsolatedClientLoader.scala
##########
@@ -107,12 +107,19 @@ private[hive] object IsolatedClientLoader extends Logging
{
s"Please set ${HiveUtils.HIVE_METASTORE_VERSION.key} with a valid
version.")
}
+ def supportsHadoopShadedClient(hadoopVersion: String): Boolean = {
+ VersionUtils.majorMinorPatchVersion(hadoopVersion).exists {
+ case (3, 2, v) if v >= 2 => true
+ case _ => false
Review comment:
Got it. I agree that we need to change this again.
> And yes we can assume that 3.2.2+, 3.3.1+ and 3.4.0+ will all have the fix.
----------------------------------------------------------------
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]