diff options
| author | a-romanov <[email protected]> | 2023-08-31 13:03:11 +0300 |
|---|---|---|
| committer | a-romanov <[email protected]> | 2023-08-31 13:45:38 +0300 |
| commit | 7cf7f8667d7e892b7ee24f2c349373faf4a14fd3 (patch) | |
| tree | 301da7c0d9fb8ddd53217cea5d8d8d4a1b0f8989 | |
| parent | 5b0836147768eaa7a5acec776de3691f4c482b37 (diff) | |
YQL-16429 YQL-16382 Disable yql_sys_order_by
| -rw-r--r-- | ydb/library/yql/core/common_opt/yql_co_simple1.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ydb/library/yql/core/common_opt/yql_co_simple1.cpp b/ydb/library/yql/core/common_opt/yql_co_simple1.cpp index eab58ee2e7e..c433b331ab1 100644 --- a/ydb/library/yql/core/common_opt/yql_co_simple1.cpp +++ b/ydb/library/yql/core/common_opt/yql_co_simple1.cpp @@ -2600,7 +2600,7 @@ TExprNode::TPtr OptimizeReorder(const TExprNode::TPtr& node, TExprContext& ctx) } if constexpr (IsTop || IsSort) { - if (ETypeAnnotationKind::Struct == GetSeqItemType(*node->Head().GetTypeAnn()).GetKind()) { + if (/*TODO: enable later*/false && ETypeAnnotationKind::Struct == GetSeqItemType(*node->Head().GetTypeAnn()).GetKind()) { std::set<ui32> indexes; if (node->Tail().Tail().IsList()) for (auto i = 0U; i < node->Tail().Tail().ChildrenSize(); ++i) |
