We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1c923d7 commit 7b767bfCopy full SHA for 7b767bf
sql/hive/src/main/scala/org/apache/spark/sql/hive/HiveUtils.scala
@@ -66,6 +66,12 @@ private[spark] object HiveUtils extends Logging {
66
.stringConf
67
.createWithDefault(builtinHiveVersion)
68
69
+ // A deprecated config which is only used to provide a default value, in case some existing
70
+ // applications depend on this config, e.g. Spark SQL ODBC driver.
71
+ val HIVE_EXECUTION_VERSION = buildConf("spark.sql.hive.version")
72
+ .stringConf
73
+ .createWithDefault(builtinHiveVersion)
74
+
75
val HIVE_METASTORE_JARS = buildConf("spark.sql.hive.metastore.jars")
76
.doc(s"""
77
| Location of the jars that should be used to instantiate the HiveMetastoreClient.
0 commit comments