Skip to content

Commit

Permalink
fix test case
Browse files Browse the repository at this point in the history
  • Loading branch information
scwf committed Apr 30, 2015
1 parent d5a9933 commit 7fc4a98
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,8 @@ class TestHiveContext(sc: SparkContext) extends HiveContext(sc) {
protected[sql] override lazy val conf: SQLConf = new SQLConf {
override def numShufflePartitions: Int = getConf(SQLConf.SHUFFLE_PARTITIONS, "5").toInt
override def dialect: String = getConf(SQLConf.DIALECT, "hiveql")
setConf(CatalystConf.CASE_SENSITIVE, "false")
override def caseSensitiveAnalysis: Boolean =
getConf(CatalystConf.CASE_SENSITIVE, "false").toBoolean
}
}

Expand Down

0 comments on commit 7fc4a98

Please sign in to comment.