Skip to content

Commit 1731574

Browse files
authored
Make scalar map join benchmark spit out same tuples amount as others (#24840)
1 parent 5dc5519 commit 1731574

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ydb/core/kqp/tools/combiner_perf/construct_join_graph.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ THolder<IComputationGraph> ConstructInnerJoinGraphStream(ETestedJoinAlgo algo, T
129129
"composite key types are not supported yet for ScalarMapJoin "
130130
"benchmark");
131131
TRuntimeNode rightDict = pb.ToSortedDict(
132-
args.Right, false, [&](TRuntimeNode tuple) { return pb.Nth(tuple, descr.RightSource.KeyColumnIndexes[0]); },
132+
args.Right, true, [&](TRuntimeNode tuple) { return pb.Nth(tuple, descr.RightSource.KeyColumnIndexes[0]); },
133133
[&](TRuntimeNode tuple) {
134134
auto types = AS_TYPE(TTupleType, tuple.GetStaticType())->GetElements();
135135
TVector<TRuntimeNode> valueTupleElements;

0 commit comments

Comments
 (0)