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 d5a9933 commit 7fc4a98Copy full SHA for 7fc4a98
sql/hive/src/main/scala/org/apache/spark/sql/hive/test/TestHive.scala
@@ -109,7 +109,8 @@ class TestHiveContext(sc: SparkContext) extends HiveContext(sc) {
109
protected[sql] override lazy val conf: SQLConf = new SQLConf {
110
override def numShufflePartitions: Int = getConf(SQLConf.SHUFFLE_PARTITIONS, "5").toInt
111
override def dialect: String = getConf(SQLConf.DIALECT, "hiveql")
112
- setConf(CatalystConf.CASE_SENSITIVE, "false")
+ override def caseSensitiveAnalysis: Boolean =
113
+ getConf(CatalystConf.CASE_SENSITIVE, "false").toBoolean
114
}
115
116
0 commit comments