Skip to content

Commit

Permalink
Fix hashjoin runtime issue (oap-project#106)
Browse files Browse the repository at this point in the history
  • Loading branch information
zhixingheyi-tian authored and zhejiangxiaomai committed Apr 14, 2023
1 parent 1091f5b commit 73efaf3
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions velox/exec/HashBuild.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,6 @@ HashBuild::HashBuild(
}

// Identify the non-key build side columns and make a decoder for each.
const auto numDependents = outputType->size() - numKeys;
dependentChannels_.reserve(numDependents);
decoders_.reserve(numDependents);
for (auto i = 0; i < outputType->size(); ++i) {
if (keyChannelMap.find(i) == keyChannelMap.end()) {
dependentChannels_.emplace_back(i);
Expand Down

0 comments on commit 73efaf3

Please sign in to comment.