File tree Expand file tree Collapse file tree 2 files changed +1
-14
lines changed
hive/src/main/scala/org/apache/spark/sql/hive
hive-thriftserver/src/test/scala/org/apache/spark/sql/hive/thriftserver Expand file tree Collapse file tree 2 files changed +1
-14
lines changed Original file line number Diff line number Diff line change @@ -525,19 +525,6 @@ class HiveThriftBinaryServerSuite extends HiveThriftJdbcTest {
525
525
}
526
526
}
527
527
528
- test(" Checks Hive version via SET" ) {
529
- withJdbcStatement() { statement =>
530
- val resultSet = statement.executeQuery(" SET" )
531
-
532
- val conf = mutable.Map .empty[String , String ]
533
- while (resultSet.next()) {
534
- conf += resultSet.getString(1 ) -> resultSet.getString(2 )
535
- }
536
-
537
- assert(conf.get(" spark.sql.hive.metastore.version" ) === Some (" 1.2.1" ))
538
- }
539
- }
540
-
541
528
test(" SPARK-11595 ADD JAR with input path having URL scheme" ) {
542
529
withJdbcStatement(" test_udtf" ) { statement =>
543
530
try {
Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ private[spark] object HiveUtils extends Logging {
62
62
63
63
val HIVE_METASTORE_VERSION = buildConf(" spark.sql.hive.metastore.version" )
64
64
.doc(" Version of the Hive metastore. Available options are " +
65
- s " <code>0.12.0</code> through <code> $builtinHiveVersion </code>. " )
65
+ s " <code>0.12.0</code> through <code>2.1.1 </code>. " )
66
66
.stringConf
67
67
.createWithDefault(builtinHiveVersion)
68
68
You can’t perform that action at this time.
0 commit comments