Skip to content

Commit

Permalink
fix test case failure
Browse files Browse the repository at this point in the history
  • Loading branch information
jackylk committed Jan 19, 2015
1 parent 05b09a3 commit dee56e9
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,13 +51,13 @@ import org.apache.spark.sql.types._
class HiveContext(sc: SparkContext) extends SQLContext(sc) {
self =>

/* By default it should be case insensitive to match Hive */
setConf(CatalystConf.CASE_SENSITIVE, "false")

protected[sql] override lazy val conf: SQLConf = new SQLConf {
override def dialect: String = getConf(SQLConf.DIALECT, "hiveql")
}

/* By default it should be case insensitive to match Hive */
conf.setConf(CatalystConf.CASE_SENSITIVE, "false")

/**
* When true, enables an experimental feature where metastore tables that use the parquet SerDe
* are automatically converted to use the Spark SQL parquet table scan, instead of the Hive
Expand Down

0 comments on commit dee56e9

Please sign in to comment.