-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Hash-based implementation for innerJoin-kernel (#926)
- The existing innerJoin-kernel was very inefficient as it was a nested-loop-join and incurred a significant function call overhead per value. Furthermore, it suffered from several memory leaks related to the use of Frame::getColumn(). - This commit replaces the innerJoin-kernel implementation by a hash-based one. - Adapted a unit test case of the innerJoin-kernel to trigger a case where the build side of the join is not unique.
- Loading branch information
1 parent
a374814
commit bd1f04b
Showing
2 changed files
with
110 additions
and
74 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters