Skip to content

Commit

Permalink
fix left API change
Browse files Browse the repository at this point in the history
  • Loading branch information
adrian-wang committed Apr 23, 2015
1 parent d485fe8 commit a99f492
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ case class BroadcastLeftSemiJoinHash(
override def output: Seq[Attribute] = left.output

@transient private lazy val boundCondition =
InterpretedPredicate(
InterpretedPredicate.create(
condition
.map(c => BindReferences.bindReference(c, left.output ++ right.output))
.getOrElse(Literal(true)))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ case class LeftSemiJoinHash(
override def output: Seq[Attribute] = left.output

@transient private lazy val boundCondition =
InterpretedPredicate(
InterpretedPredicate.create(
condition
.map(c => BindReferences.bindReference(c, left.output ++ right.output))
.getOrElse(Literal(true)))
Expand Down

0 comments on commit a99f492

Please sign in to comment.