Skip to content

Commit

Permalink
Typo fix for argument in sql
Browse files Browse the repository at this point in the history
  • Loading branch information
ecurtin committed Oct 4, 2017
1 parent 378773e commit 481bee2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ object SQLWorkload extends WorkloadDefaults {
val name = "sql"
def apply(m: Map[String, Any]) =
new SQLWorkload(input = m.get("input").map(_.asInstanceOf[String]),
output = m.get("workloadresultsoutputdir").map(_.asInstanceOf[String]),
output = m.get("output").map(_.asInstanceOf[String]),
queryStr = getOrThrow(m, "query").asInstanceOf[String],
cache = getOrDefault[Boolean](m, "cache", false)
)
Expand Down

0 comments on commit 481bee2

Please sign in to comment.