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 7fc4a98 commit 6db4bf5Copy full SHA for 6db4bf5
sql/hive/src/main/scala/org/apache/spark/sql/hive/HiveContext.scala
@@ -262,7 +262,8 @@ class HiveContext(sc: SparkContext) extends SQLContext(sc) {
262
protected[hive] class SQLSession extends super.SQLSession {
263
protected[sql] override lazy val conf: SQLConf = new SQLConf {
264
override def dialect: String = getConf(SQLConf.DIALECT, "hiveql")
265
- setConf(CatalystConf.CASE_SENSITIVE, "false")
+ override def caseSensitiveAnalysis: Boolean =
266
+ getConf(CatalystConf.CASE_SENSITIVE, "false").toBoolean
267
}
268
269
protected[hive] lazy val hiveconf: HiveConf = {
0 commit comments