Skip to content

Commit 91ddb55

Browse files
zhixingheyi-tianzhejiangxiaomai
authored andcommitted
Fix hashjoin runtime issue (#106)
1 parent fd2c951 commit 91ddb55

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

velox/exec/HashBuild.cpp

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,9 +86,6 @@ HashBuild::HashBuild(
8686
}
8787

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

0 commit comments

Comments
 (0)