Skip to content

Commit

Permalink
Remove hardcode "agg_plan" in HashAggregateExec
Browse files Browse the repository at this point in the history
  • Loading branch information
Yucai Yu committed Sep 22, 2016
1 parent de7df7d commit a0730d8
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -552,7 +552,7 @@ case class HashAggregateExec(
} else {
ctx.addMutableState(fastHashMapClassName, fastHashMapTerm,
s"$fastHashMapTerm = new $fastHashMapClassName(" +
s"agg_plan.getTaskMemoryManager(), agg_plan.getEmptyAggregationBuffer());")
s"$thisPlan.getTaskMemoryManager(), $thisPlan.getEmptyAggregationBuffer());")
ctx.addMutableState(
"org.apache.spark.unsafe.KVIterator",
iterTermForFastHashMap, "")
Expand Down

0 comments on commit a0730d8

Please sign in to comment.