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
bug fix
  • Loading branch information
adrian-wang committed Aug 6, 2015
commit d2a1d12422a15bf0c9b3209f7383ca541f4ee635
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ case class SortMergeJoin(
while (!found && streamedElement != null
&& keyOrdering.compare(streamedKey, matchKey) == 0) {
while (bufferedPosition < bufferedMatches.size && !boundCondition(
smartJoinRow(streamedElement, bufferedMatches(bufferedPosition)))) {
joinRow(streamedElement, bufferedMatches(bufferedPosition)))) {
bufferedPosition += 1
}
if (bufferedPosition == bufferedMatches.size) {
Expand Down