@@ -62,7 +62,7 @@ TMaybeNode<TExprBase> TYtPhysicalOptProposalTransformer::FlatMap(TExprBase node,
6262
6363 auto cluster = TString{GetClusterName (input)};
6464 TSyncMap syncList;
65- if (!IsYtCompleteIsolatedLambda (flatMap.Lambda ().Ref (), syncList, cluster, true , false )) {
65+ if (!IsYtCompleteIsolatedLambda (flatMap.Lambda ().Ref (), syncList, cluster, false )) {
6666 return node;
6767 }
6868
@@ -150,7 +150,7 @@ TMaybeNode<TExprBase> TYtPhysicalOptProposalTransformer::LMap(TExprBase node, TE
150150
151151 auto cluster = TString{GetClusterName (lmap.Input ())};
152152 TSyncMap syncList;
153- if (!IsYtCompleteIsolatedLambda (lmap.Lambda ().Ref (), syncList, cluster, true , false )) {
153+ if (!IsYtCompleteIsolatedLambda (lmap.Lambda ().Ref (), syncList, cluster, false )) {
154154 return node;
155155 }
156156
@@ -228,19 +228,19 @@ TMaybeNode<TExprBase> TYtPhysicalOptProposalTransformer::CombineByKey(TExprBase
228228
229229 auto cluster = TString{GetClusterName (input)};
230230 TSyncMap syncList;
231- if (!IsYtCompleteIsolatedLambda (combineByKey.PreMapLambda ().Ref (), syncList, cluster, true , false )) {
231+ if (!IsYtCompleteIsolatedLambda (combineByKey.PreMapLambda ().Ref (), syncList, cluster, false )) {
232232 return node;
233233 }
234- if (!IsYtCompleteIsolatedLambda (combineByKey.KeySelectorLambda ().Ref (), syncList, cluster, true , false )) {
234+ if (!IsYtCompleteIsolatedLambda (combineByKey.KeySelectorLambda ().Ref (), syncList, cluster, false )) {
235235 return node;
236236 }
237- if (!IsYtCompleteIsolatedLambda (combineByKey.InitHandlerLambda ().Ref (), syncList, cluster, true , false )) {
237+ if (!IsYtCompleteIsolatedLambda (combineByKey.InitHandlerLambda ().Ref (), syncList, cluster, false )) {
238238 return node;
239239 }
240- if (!IsYtCompleteIsolatedLambda (combineByKey.UpdateHandlerLambda ().Ref (), syncList, cluster, true , false )) {
240+ if (!IsYtCompleteIsolatedLambda (combineByKey.UpdateHandlerLambda ().Ref (), syncList, cluster, false )) {
241241 return node;
242242 }
243- if (!IsYtCompleteIsolatedLambda (combineByKey.FinishHandlerLambda ().Ref (), syncList, cluster, true , false )) {
243+ if (!IsYtCompleteIsolatedLambda (combineByKey.FinishHandlerLambda ().Ref (), syncList, cluster, false )) {
244244 return node;
245245 }
246246
0 commit comments