-
Notifications
You must be signed in to change notification settings - Fork 610
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Introduce computation node for BlockMapJoinCore (LeftOnly and LeftSemi) #7947
Introduce computation node for BlockMapJoinCore (LeftOnly and LeftSemi) #7947
Conversation
⚪
🟢
*please be aware that the difference is based on comparing your commit and the last completed build from the post-commit, check comparation |
⚪ ⚪
⚪
🟢
*please be aware that the difference is based on comparing your commit and the last completed build from the post-commit, check comparation |
9030f7d
to
b1366fc
Compare
⚪ ⚪
🟢
*please be aware that the difference is based on comparing your commit and the last completed build from the post-commit, check comparation |
⚪
🟢
*please be aware that the difference is based on comparing your commit and the last completed build from the post-commit, check comparation |
} | ||
|
||
const auto dictList = pgmBuilder.NewList(dictStructType, dictListItems); | ||
return pgmBuilder.ToSortedDict(dictList, false, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
по умолчанию лучше использовать hashed dict
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
b1366fc
to
887c78b
Compare
⚪
🟢
*please be aware that the difference is based on comparing your commit and the last completed build from the post-commit, check comparation |
⚪ ⚪
🟢
*please be aware that the difference is based on comparing your commit and the last completed build from the post-commit, check comparation |
This patchset is the first part of the series implementing
BlockMapJoinCore
MKQL callable. This part implementsBlockMapJoinCore
computation node for the join types, that don't require "dict" payload (i.e.LeftSeim
andLeftOnly
), so MKQL version is bumped either. The support for otherMapJoinCore
types are implemented in scope of the next PRs.By the way the new flag is added to
ValidateBlock*Type
helpers to control whether the resulting item types are block or "raw" (i.e. unwrapped).Changelog category