Skip to content

Commit

Permalink
fix EmptyConf
Browse files Browse the repository at this point in the history
  • Loading branch information
scwf committed Apr 30, 2015
1 parent 6ef31cf commit eee75ba
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,9 @@ private[spark] trait CatalystConf {
* relations are already filled in and the analyser needs only to resolve attribute references.
*/
object EmptyConf extends CatalystConf {
override def caseSensitiveAnalysis: Boolean = true
override def caseSensitiveAnalysis: Boolean = {
throw new UnsupportedOperationException
}

override def setConf(key: String, value: String) : Unit = {
throw new UnsupportedOperationException
Expand Down

0 comments on commit eee75ba

Please sign in to comment.