Skip to content

Commit 15933e4

Browse files
authored
Revert MinFillPercentage usage in Dq (#12458)
1 parent 80aedb4 commit 15933e4

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

ydb/library/yql/dq/runtime/dq_output_consumer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -516,7 +516,7 @@ class TDqOutputHashPartitionConsumerBlock : public IDqOutputConsumer {
516516
if (blockType->GetShape() == NMiniKQL::TBlockType::EShape::Many) {
517517
auto itemType = blockType->GetItemType();
518518
YQL_ENSURE(!itemType->IsPg(), "pg types are not supported yet");
519-
Builders_.emplace_back(MakeArrayBuilder(helper, itemType, *NYql::NUdf::GetYqlMemoryPool(), maxBlockLen, nullptr, {.MinFillPercentage=100}));
519+
Builders_.emplace_back(MakeArrayBuilder(helper, itemType, *NYql::NUdf::GetYqlMemoryPool(), maxBlockLen, nullptr));
520520
} else {
521521
Builders_.emplace_back();
522522
}

ydb/library/yql/dq/runtime/dq_output_consumer.h

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
#include <yql/essentials/minikql/mkql_alloc.h>
77

88
namespace NKikimr::NMiniKQL {
9-
class TTypeEnvironment;
10-
class THolderFactory;
9+
class TTypeEnvironment;
10+
class THolderFactory;
1111
} // namespace NKikimr::NMiniKQL
1212

1313
namespace NYql::NDq {
@@ -51,5 +51,4 @@ IDqOutputConsumer::TPtr CreateOutputHashPartitionConsumer(
5151

5252
IDqOutputConsumer::TPtr CreateOutputBroadcastConsumer(TVector<IDqOutput::TPtr>&& outputs, TMaybe<ui32> outputWidth);
5353

54-
5554
} // namespace NYql::NDq

0 commit comments

Comments
 (0)