Skip to content

Commit 5d4bd10

Browse files
Fix hashjoin runtime issue (#106)
1 parent ed4592b commit 5d4bd10

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
@@ -85,9 +85,6 @@ HashBuild::HashBuild(
8585
}
8686

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

0 commit comments

Comments
 (0)