diff options
| author | aneporada <[email protected]> | 2025-04-23 11:30:54 +0300 | 
|---|---|---|
| committer | aneporada <[email protected]> | 2025-04-23 12:28:48 +0300 | 
| commit | a5cca5bad63446a081c78d40b2c48d530ee58efc (patch) | |
| tree | b7175b3b441c1eb0e28e9a261cbfdee20d52f912 | |
| parent | 72ca53e2f03266ae5ad40244d3a47ff76e9f9aeb (diff) | |
Enable ExtractMembersSplitOnOptional by default
commit_hash:cc8e1d7c04d38c7d9f7d42a6f6f327c73ba11502
| -rw-r--r-- | yql/essentials/core/common_opt/yql_co_flow2.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/yql/essentials/core/common_opt/yql_co_flow2.cpp b/yql/essentials/core/common_opt/yql_co_flow2.cpp index ee0a9074f18..8a7c25ddfe9 100644 --- a/yql/essentials/core/common_opt/yql_co_flow2.cpp +++ b/yql/essentials/core/common_opt/yql_co_flow2.cpp @@ -2173,7 +2173,7 @@ void RegisterCoFlowCallables2(TCallableOptimizerMap& map) {          const bool optInput = self.Input().Ref().GetTypeAnn()->GetKind() == ETypeAnnotationKind::Optional;          static const char splitFlag[] = "ExtractMembersSplitOnOptional";          YQL_ENSURE(optCtx.Types); -        const bool split = IsOptimizerEnabled<splitFlag>(*optCtx.Types) && !IsOptimizerDisabled<splitFlag>(*optCtx.Types); +        const bool split = !IsOptimizerDisabled<splitFlag>(*optCtx.Types);          if (!optCtx.IsSingleUsage(self.Input()) && (!optInput || !split)) {              return node;          }  | 
