@@ -2160,28 +2160,6 @@ TRuntimeNode TProgramBuilder::GraceSelfJoin(TRuntimeNode flowLeft, EJoinKind jo
2160
2160
return GraceJoinCommon (__func__, flowLeft, {}, joinKind, leftKeyColumns, rightKeyColumns, leftRenames, rightRenames, returnType, anyJoinSettings);
2161
2161
}
2162
2162
2163
- TRuntimeNode TProgramBuilder::GraceJoinWithSpilling (TRuntimeNode flowLeft, TRuntimeNode flowRight, EJoinKind joinKind,
2164
- const TArrayRef<const ui32>& leftKeyColumns, const TArrayRef<const ui32>& rightKeyColumns,
2165
- const TArrayRef<const ui32>& leftRenames, const TArrayRef<const ui32>& rightRenames, TType* returnType, EAnyJoinSettings anyJoinSettings ) {
2166
-
2167
- if constexpr (RuntimeVersion < 50U ) {
2168
- THROW yexception () << " Runtime version (" << RuntimeVersion << " ) too old for " << __func__;
2169
- }
2170
-
2171
- return GraceJoinCommon (__func__, flowLeft, flowRight, joinKind, leftKeyColumns, rightKeyColumns, leftRenames, rightRenames, returnType, anyJoinSettings);
2172
- }
2173
-
2174
- TRuntimeNode TProgramBuilder::GraceSelfJoinWithSpilling (TRuntimeNode flowLeft, EJoinKind joinKind,
2175
- const TArrayRef<const ui32>& leftKeyColumns, const TArrayRef<const ui32>& rightKeyColumns,
2176
- const TArrayRef<const ui32>& leftRenames, const TArrayRef<const ui32>& rightRenames, TType* returnType, EAnyJoinSettings anyJoinSettings ) {
2177
-
2178
- if constexpr (RuntimeVersion < 50U ) {
2179
- THROW yexception () << " Runtime version (" << RuntimeVersion << " ) too old for " << __func__;
2180
- }
2181
-
2182
- return GraceJoinCommon (__func__, flowLeft, {}, joinKind, leftKeyColumns, rightKeyColumns, leftRenames, rightRenames, returnType, anyJoinSettings);
2183
- }
2184
-
2185
2163
TRuntimeNode TProgramBuilder::ToSortedDict (TRuntimeNode list, bool all, const TUnaryLambda& keySelector,
2186
2164
const TUnaryLambda& payloadSelector, bool isCompact, ui64 itemsCountHint) {
2187
2165
return ToDict (list, all, keySelector, payloadSelector, __func__, isCompact, itemsCountHint);
0 commit comments