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 6ef31cf commit eee75baCopy full SHA for eee75ba
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/CatalystConf.scala
@@ -36,7 +36,9 @@ private[spark] trait CatalystConf {
36
* relations are already filled in and the analyser needs only to resolve attribute references.
37
*/
38
object EmptyConf extends CatalystConf {
39
- override def caseSensitiveAnalysis: Boolean = true
+ override def caseSensitiveAnalysis: Boolean = {
40
+ throw new UnsupportedOperationException
41
+ }
42
43
override def setConf(key: String, value: String) : Unit = {
44
throw new UnsupportedOperationException
0 commit comments