Skip to content

Commit

Permalink
debug killby yarn
Browse files Browse the repository at this point in the history
  • Loading branch information
binwei committed Sep 20, 2024
1 parent bec9e22 commit a322893
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions velox/exec/RowsStreamingWindowBuild.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ RowsStreamingWindowBuild::RowsStreamingWindowBuild(
const common::SpillConfig* spillConfig,
tsan_atomic<bool>* nonReclaimableSection)
: WindowBuild(windowNode, pool, spillConfig, nonReclaimableSection),
inputRows_(0, memory::StlAllocator<char*>(*pool)){
inputRows_(0, memory::StlAllocator<char*>(*pool)),
windowPartitions_(0, memory::StlAllocator<char*>(*pool)){
velox::common::testutil::TestValue::adjust(
"facebook::velox::exec::RowsStreamingWindowBuild::RowsStreamingWindowBuild",
this);
Expand All @@ -38,7 +39,8 @@ void RowsStreamingWindowBuild::addPartitionInputs(bool finished) {
}

if (windowPartitions_.size() <= inputPartition_) {
windowPartitions_.push_back(std::make_shared<WindowPartition>(
windowPartitions_.push_back(std::allocate_shared<WindowPartition>(
memory::StlAllocator<char*>(*pool_),
pool_, data_.get(), inversedInputChannels_, sortKeyInfo_));
}

Expand Down

0 comments on commit a322893

Please sign in to comment.