Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ THolder<IComputationGraph> ConstructInnerJoinGraphStream(ETestedJoinAlgo algo, T
"composite key types are not supported yet for ScalarMapJoin "
"benchmark");
TRuntimeNode rightDict = pb.ToSortedDict(
args.Right, false, [&](TRuntimeNode tuple) { return pb.Nth(tuple, descr.RightSource.KeyColumnIndexes[0]); },
args.Right, true, [&](TRuntimeNode tuple) { return pb.Nth(tuple, descr.RightSource.KeyColumnIndexes[0]); },
[&](TRuntimeNode tuple) {
auto types = AS_TYPE(TTupleType, tuple.GetStaticType())->GetElements();
TVector<TRuntimeNode> valueTupleElements;
Expand Down