Fix typo.

This commit is contained in:
Yin Huai 2015-08-17 12:56:35 -07:00
parent d6f89c862d
commit 249157f6a6

View File

@ -85,7 +85,7 @@ abstract class Benchmark(
case "on" => sqlContext.setConf("spark.sql.unsafe.enabled", "true")
}
val tungsten = Variation("unsafe", Seq("on", "off")) {
val tungsten = Variation("tungsten", Seq("on", "off")) {
case "off" => sqlContext.setConf("spark.sql.tungsten.enabled", "false")
case "on" => sqlContext.setConf("spark.sql.tungsten.enabled", "true")
}