Skip to content

Commit

Permalink
Test Hive 2.3.5-SNAPSHOT
Browse files Browse the repository at this point in the history
  • Loading branch information
wangyum committed Apr 27, 2019
1 parent bdc1d2c commit 26f7e89
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -128,7 +128,7 @@
<hive.classifier></hive.classifier>
<!-- Version used in Maven Hive dependency -->
<hive.version>1.2.1.spark2</hive.version>
<hive23.version>2.3.4</hive23.version>
<hive23.version>2.3.5-SNAPSHOT</hive23.version>
<!-- Version used for internal directory structure -->
<hive.version.short>1.2.1</hive.version.short>
<!-- note that this should be compatible with Kafka brokers version 0.10 and up -->
Expand Down
Expand Up @@ -59,7 +59,7 @@ private[spark] object HiveUtils extends Logging {
val isHive23: Boolean = hiveVersion.startsWith("2.3")

/** The version of hive used internally by Spark SQL. */
val builtinHiveVersion: String = if (isHive23) hiveVersion else "1.2.1"
val builtinHiveVersion: String = if (isHive23) "2.3.4" else "1.2.1"

val HIVE_METASTORE_VERSION = buildConf("spark.sql.hive.metastore.version")
.doc("Version of the Hive metastore. Available options are " +
Expand Down
Expand Up @@ -190,7 +190,6 @@ private[hive] class IsolatedClientLoader(
(name.startsWith("com.google") && !name.startsWith("com.google.cloud")) ||
name.startsWith("java.") ||
name.startsWith("javax.sql.") ||
name.startsWith("org.apache.derby.") ||
sharedPrefixes.exists(name.startsWith)
}

Expand Down

0 comments on commit 26f7e89

Please sign in to comment.