-
Notifications
You must be signed in to change notification settings - Fork 29k
[SPARK-24360][SQL] Support Hive 3.0 metastore #21404
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -99,6 +99,7 @@ private[hive] object IsolatedClientLoader extends Logging { | |||||
| case "2.1" | "2.1.0" | "2.1.1" => hive.v2_1 | ||||||
| case "2.2" | "2.2.0" => hive.v2_2 | ||||||
| case "2.3" | "2.3.0" | "2.3.1" | "2.3.2" | "2.3.3" => hive.v2_3 | ||||||
| case "3.0" | "3.0.0" => hive.v3_0 | ||||||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @dongjoon-hyun Please update spark/docs/sql-programming-guide.md Line 1217 in 05974f9
|
||||||
| } | ||||||
|
|
||||||
| private def downloadVersion( | ||||||
|
|
||||||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -79,7 +79,12 @@ package object client { | |
| exclusions = Seq("org.apache.curator:*", | ||
| "org.pentaho:pentaho-aggdesigner-algorithm")) | ||
|
|
||
| val allSupportedHiveVersions = Set(v12, v13, v14, v1_0, v1_1, v1_2, v2_0, v2_1, v2_2, v2_3) | ||
| case object v3_0 extends HiveVersion("3.0.0", | ||
| exclusions = Seq("org.apache.curator:*", | ||
| "org.apache.hadoop:hadoop-aws", | ||
|
||
| "org.pentaho:pentaho-aggdesigner-algorithm")) | ||
|
|
||
| val allSupportedHiveVersions = Set(v12, v13, v14, v1_0, v1_1, v1_2, v2_0, v2_1, v2_2, v2_3, v3_0) | ||
| } | ||
| // scalastyle:on | ||
|
|
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
BTW, I tracked and checked all the signature changed.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you, @HyukjinKwon .