diff options
author | ivanmorozov <[email protected]> | 2023-02-09 09:18:26 +0300 |
---|---|---|
committer | ivanmorozov <[email protected]> | 2023-02-09 09:18:26 +0300 |
commit | c9d9a9102a622e6b747cc6338eddac567beabd30 (patch) | |
tree | fe83871c7d0c2d0936170a75dc0a57511a98558d | |
parent | b23c4a0b217d46a0fe299cef6cbd706f06cc2651 (diff) |
decompose tuples
-rw-r--r-- | ydb/library/yql/core/peephole_opt/yql_opt_peephole_physical.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ydb/library/yql/core/peephole_opt/yql_opt_peephole_physical.cpp b/ydb/library/yql/core/peephole_opt/yql_opt_peephole_physical.cpp index f519ef54273..f1eee57a5c9 100644 --- a/ydb/library/yql/core/peephole_opt/yql_opt_peephole_physical.cpp +++ b/ydb/library/yql/core/peephole_opt/yql_opt_peephole_physical.cpp @@ -4593,7 +4593,7 @@ TExprNode::TPtr OptimizeWideCombiner(const TExprNode::TPtr& node, TExprContext& tupleExpandMap.resize(originalStateSize); structExpandMap.resize(originalStateSize); - const auto needStateFlatten = GetExpandMapsForLambda<true>(*node->Child(3U), tupleExpandMap, structExpandMap); + const auto needStateFlatten = GetExpandMapsForLambda<false>(*node->Child(3U), tupleExpandMap, structExpandMap); if (needStateFlatten.front()) { const auto flattenSize = *needStateFlatten.front(); |