Skip to content

Commit f587d2e

Browse files
gatorsmilecloud-fan
authored andcommitted
[SPARK-20842][SQL] Upgrade to 1.2.2 for Hive Metastore Client 1.2
### What changes were proposed in this pull request? Hive 1.2.2 release is available. Below is the list of bugs fixed in 1.2.2 https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12332952&styleName=Text&projectId=12310843 ### How was this patch tested? N/A Author: Xiao Li <[email protected]> Closes apache#18063 from gatorsmile/upgradeHiveClientTo1.2.2.
1 parent e0af76a commit f587d2e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

sql/hive/src/main/scala/org/apache/spark/sql/hive/client/IsolatedClientLoader.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ private[hive] object IsolatedClientLoader extends Logging {
9292
case "14" | "0.14" | "0.14.0" => hive.v14
9393
case "1.0" | "1.0.0" => hive.v1_0
9494
case "1.1" | "1.1.0" => hive.v1_1
95-
case "1.2" | "1.2.0" | "1.2.1" => hive.v1_2
95+
case "1.2" | "1.2.0" | "1.2.1" | "1.2.2" => hive.v1_2
9696
case "2.0" | "2.0.0" | "2.0.1" => hive.v2_0
9797
case "2.1" | "2.1.0" | "2.1.1" => hive.v2_1
9898
}

sql/hive/src/main/scala/org/apache/spark/sql/hive/client/package.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ package object client {
5656
"net.hydromatic:linq4j",
5757
"net.hydromatic:quidem"))
5858

59-
case object v1_2 extends HiveVersion("1.2.1",
59+
case object v1_2 extends HiveVersion("1.2.2",
6060
exclusions = Seq("eigenbase:eigenbase-properties",
6161
"org.apache.curator:*",
6262
"org.pentaho:pentaho-aggdesigner-algorithm",

0 commit comments

Comments
 (0)