Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Use foreach not map
  • Loading branch information
maropu committed May 12, 2016
commit 274c542be7d0019afe705d517d09cf3fe666389f
Original file line number Diff line number Diff line change
Expand Up @@ -1473,7 +1473,7 @@ class Analyzer(
q.transform {
case f @ Filter(filterCondition, j @ Join(_, _, _, _)) =>
val joinOutput = new ArrayBuffer[(Attribute, Attribute)]
j.output.map {
j.output.foreach {
case a: AttributeReference => joinOutput += ((a, a))
}
val joinOutputMap = AttributeMap(joinOutput)
Expand Down