diff options
author | ulya-sidorina <[email protected]> | 2023-10-03 16:04:19 +0300 |
---|---|---|
committer | ulya-sidorina <[email protected]> | 2023-10-03 17:05:55 +0300 |
commit | 7a2b92f5a25deb6df3c487cb80d804de5d9f7d52 (patch) | |
tree | 3f61956388d382f6f343cc9fba9b589a14fc6b14 | |
parent | 60f776a02c468b31e6b5e13305bdf7bdba5250bc (diff) |
KIKIMR-19439: improve precompute query plan presentation
fix(query_plan): rename tx_result_binding to precompute
557 files changed, 2032 insertions, 1801 deletions
diff --git a/ydb/core/kqp/opt/kqp_query_plan.cpp b/ydb/core/kqp/opt/kqp_query_plan.cpp index 689b4ec49ea..9d849f1f977 100644 --- a/ydb/core/kqp/opt/kqp_query_plan.cpp +++ b/ydb/core/kqp/opt/kqp_query_plan.cpp @@ -168,7 +168,7 @@ public: TStringBuilder typeName; if (SerializerCtx.PrecomputePhases.find(TxId) != SerializerCtx.PrecomputePhases.end()) { typeName << "Precompute"; - planNode.CteName = TStringBuilder() << "tx_result_binding_" << TxId << "_" << resId; + planNode.CteName = TStringBuilder() << "precompute_" << TxId << "_" << resId; planNode.Type = EPlanNodeType::Materialize; } else { typeName << "ResultSet"; @@ -1021,6 +1021,8 @@ private: operatorId = Visit(maybeExtend.Cast(), planNode); } else if (auto maybeIter = TMaybeNode<TCoIterator>(node)) { operatorId = Visit(maybeIter.Cast(), planNode); + } else if (auto maybePartitionByKey = TMaybeNode<TCoPartitionByKey>(node)) { + operatorId = Visit(maybePartitionByKey.Cast(), planNode); } else if (auto maybeUpsert = TMaybeNode<TKqpUpsertRows>(node)) { operatorId = Visit(maybeUpsert.Cast(), planNode); } else if (auto maybeDelete = TMaybeNode<TKqpDeleteRows>(node)) { @@ -1125,16 +1127,35 @@ private: TOperator op; op.Properties["Name"] = "Iterator"; - op.Properties["Iterator"] = iterValue; if (auto maybeResultBinding = ContainResultBinding(iterValue)) { auto [txId, resId] = *maybeResultBinding; - planNode.CteRefName = TStringBuilder() << "tx_result_binding_" << TxId << "_" << resId; + planNode.CteRefName = TStringBuilder() << "precompute_" << txId << "_" << resId; + op.Properties["Iterator"] = *planNode.CteRefName; + } else { + op.Properties["Iterator"] = iterValue; } return AddOperator(planNode, "ConstantExpr", std::move(op)); } + ui32 Visit(const TCoPartitionByKey& partitionByKey, TQueryPlanNode& planNode) { + const auto inputValue = PrettyExprStr(partitionByKey.Input()); + + TOperator op; + op.Properties["Name"] = "PartitionByKey"; + + if (auto maybeResultBinding = ContainResultBinding(inputValue)) { + auto [txId, resId] = *maybeResultBinding; + planNode.CteRefName = TStringBuilder() << "precompute_" << txId << "_" << resId; + op.Properties["Input"] = *planNode.CteRefName; + } else { + op.Properties["Input"] = inputValue; + } + + return AddOperator(planNode, "Aggregate", std::move(op)); + } + ui32 Visit(const TKqpUpsertRows& upsert, TQueryPlanNode& planNode) { const auto table = upsert.Table().Path().StringValue(); diff --git a/ydb/core/kqp/ut/query/kqp_explain_ut.cpp b/ydb/core/kqp/ut/query/kqp_explain_ut.cpp index 08e8c12adbb..8f1af515985 100644 --- a/ydb/core/kqp/ut/query/kqp_explain_ut.cpp +++ b/ydb/core/kqp/ut/query/kqp_explain_ut.cpp @@ -900,6 +900,36 @@ Y_UNIT_TEST_SUITE(KqpExplain) { ); UNIT_ASSERT(!fullscan.IsDefined()); } + + Y_UNIT_TEST(MultiJoinCteLinks) { + TKikimrRunner kikimr; + auto db = kikimr.GetTableClient(); + auto session = db.CreateSession().GetValueSync().GetSession(); + + auto result = session.ExplainDataQuery(R"( + select * from `/Root/KeyValue` as kv + inner join `/Root/EightShard` as es on kv.Key == es.Key; + )").ExtractValueSync(); + UNIT_ASSERT_VALUES_EQUAL_C(result.GetStatus(), EStatus::SUCCESS, result.GetIssues().ToString()); + + NJson::TJsonValue plan; + NJson::ReadJsonTree(result.GetPlan(), &plan, true); + + auto cteLink0 = FindPlanNodeByKv( + plan, + "CTE Name", + "precompute_0_0" + ); + UNIT_ASSERT(cteLink0.IsDefined()); + + auto cteLink1 = FindPlanNodeByKv( + plan, + "CTE Name", + "precompute_1_0" + ); + + UNIT_ASSERT(cteLink1.IsDefined()); + } } } // namespace NKqp diff --git a/ydb/tests/functional/canonical/canondata/test_sql.TestCanonicalFolder1.test_case_explain.script-script_/explain.script.plan b/ydb/tests/functional/canonical/canondata/test_sql.TestCanonicalFolder1.test_case_explain.script-script_/explain.script.plan index aa9259e3f4b..3135f610f7a 100644 --- a/ydb/tests/functional/canonical/canondata/test_sql.TestCanonicalFolder1.test_case_explain.script-script_/explain.script.plan +++ b/ydb/tests/functional/canonical/canondata/test_sql.TestCanonicalFolder1.test_case_explain.script-script_/explain.script.plan @@ -134,12 +134,12 @@ "PlanNodeId": 6, "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], "Node Type": "ConstantExpr", - "CTE Name": "tx_result_binding_1_0" + "CTE Name": "precompute_0_0" } ], "Node Type": "ResultSet_1", @@ -147,7 +147,7 @@ }, { "PlanNodeId": 4, - "Subplan Name": "CTE tx_result_binding_0_0", + "Subplan Name": "CTE precompute_0_0", "Plans": [ { "PlanNodeId": 3, @@ -300,12 +300,12 @@ "PlanNodeId": 6, "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], "Node Type": "ConstantExpr", - "CTE Name": "tx_result_binding_1_0" + "CTE Name": "precompute_0_0" } ], "Node Type": "ResultSet_1", @@ -313,7 +313,7 @@ }, { "PlanNodeId": 4, - "Subplan Name": "CTE tx_result_binding_0_0", + "Subplan Name": "CTE precompute_0_0", "Plans": [ { "PlanNodeId": 3, @@ -401,12 +401,12 @@ "Table": "base_explain_script_script/ScriptingTest" }, { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], "Node Type": "Upsert-ConstantExpr", - "CTE Name": "tx_result_binding_1_0" + "CTE Name": "precompute_0_0" } ], "Node Type": "Effect" @@ -447,12 +447,12 @@ "Table": "base_explain_script_script/ScriptingTest" }, { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], "Node Type": "Upsert-ConstantExpr", - "CTE Name": "tx_result_binding_1_0" + "CTE Name": "precompute_0_0" } ], "Node Type": "Effect" diff --git a/ydb/tests/functional/canonical/canondata/test_sql.TestCanonicalFolder1.test_case_join_group_by_lookup.script-script_/join_group_by_lookup.script.plan b/ydb/tests/functional/canonical/canondata/test_sql.TestCanonicalFolder1.test_case_join_group_by_lookup.script-script_/join_group_by_lookup.script.plan index db6133f8d42..124954c045f 100644 --- a/ydb/tests/functional/canonical/canondata/test_sql.TestCanonicalFolder1.test_case_join_group_by_lookup.script-script_/join_group_by_lookup.script.plan +++ b/ydb/tests/functional/canonical/canondata/test_sql.TestCanonicalFolder1.test_case_join_group_by_lookup.script-script_/join_group_by_lookup.script.plan @@ -55,12 +55,12 @@ "PlanNodeId": 15, "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], "Node Type": "ConstantExpr", - "CTE Name": "tx_result_binding_2_0" + "CTE Name": "precompute_0_0" } ], "Node Type": "Map", @@ -94,12 +94,12 @@ "Table": "base_join_group_by_lookup_script_script/Temp" }, { - "Iterator": "%kqp%tx_result_binding_1_0", + "Iterator": "precompute_1_0", "Name": "Iterator" } ], "Node Type": "Filter-TablePointLookup-ConstantExpr", - "CTE Name": "tx_result_binding_2_0" + "CTE Name": "precompute_1_0" } ], "Node Type": "UnionAll", @@ -149,12 +149,16 @@ }, { "PlanNodeId": 9, - "Subplan Name": "CTE tx_result_binding_1_0", + "Subplan Name": "CTE precompute_1_0", "Plans": [ { "PlanNodeId": 8, "Operators": [ { + "Name": "PartitionByKey", + "Input": "precompute_0_0" + }, + { "Predicate": "Exist(item.Group)", "Name": "Filter" }, @@ -163,7 +167,8 @@ "Limit": "1" } ], - "Node Type": "Filter-Limit" + "Node Type": "Aggregate-Filter-Limit", + "CTE Name": "precompute_0_0" } ], "Node Type": "Precompute_1", @@ -172,7 +177,7 @@ }, { "PlanNodeId": 6, - "Subplan Name": "CTE tx_result_binding_0_0", + "Subplan Name": "CTE precompute_0_0", "Plans": [ { "PlanNodeId": 5, @@ -274,12 +279,12 @@ "Table": "base_join_group_by_lookup_script_script/Temp" }, { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], "Node Type": "Upsert-ConstantExpr", - "CTE Name": "tx_result_binding_1_0" + "CTE Name": "precompute_0_0" } ], "Node Type": "Effect" diff --git a/ydb/tests/functional/canonical/canondata/test_sql.TestCanonicalFolder1.test_case_simple_ct.script-script_/simple_ct.script.plan b/ydb/tests/functional/canonical/canondata/test_sql.TestCanonicalFolder1.test_case_simple_ct.script-script_/simple_ct.script.plan index 51829cee38b..713c9433517 100644 --- a/ydb/tests/functional/canonical/canondata/test_sql.TestCanonicalFolder1.test_case_simple_ct.script-script_/simple_ct.script.plan +++ b/ydb/tests/functional/canonical/canondata/test_sql.TestCanonicalFolder1.test_case_simple_ct.script-script_/simple_ct.script.plan @@ -35,12 +35,12 @@ "Table": "base_simple_ct_script_script/Questions" }, { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], "Node Type": "Upsert-ConstantExpr", - "CTE Name": "tx_result_binding_1_0" + "CTE Name": "precompute_0_0" } ], "Node Type": "Effect" diff --git a/ydb/tests/functional/canonical/canondata/test_sql.TestCanonicalFolder1.test_case_table_types.script-script_/table_types.script.plan b/ydb/tests/functional/canonical/canondata/test_sql.TestCanonicalFolder1.test_case_table_types.script-script_/table_types.script.plan index 9010d7a4aca..e16d92f48c0 100644 --- a/ydb/tests/functional/canonical/canondata/test_sql.TestCanonicalFolder1.test_case_table_types.script-script_/table_types.script.plan +++ b/ydb/tests/functional/canonical/canondata/test_sql.TestCanonicalFolder1.test_case_table_types.script-script_/table_types.script.plan @@ -161,12 +161,12 @@ "Table": "base_table_types_script_script/TableTypes" }, { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], "Node Type": "Upsert-ConstantExpr", - "CTE Name": "tx_result_binding_1_0" + "CTE Name": "precompute_0_0" } ], "Node Type": "Effect" diff --git a/ydb/tests/functional/canonical/canondata/test_sql.TestCanonicalFolder1.test_case_write_multi_usage.script-script_/write_multi_usage.script.plan b/ydb/tests/functional/canonical/canondata/test_sql.TestCanonicalFolder1.test_case_write_multi_usage.script-script_/write_multi_usage.script.plan index 8d8c3f1b7e1..8f7330a43a4 100644 --- a/ydb/tests/functional/canonical/canondata/test_sql.TestCanonicalFolder1.test_case_write_multi_usage.script-script_/write_multi_usage.script.plan +++ b/ydb/tests/functional/canonical/canondata/test_sql.TestCanonicalFolder1.test_case_write_multi_usage.script-script_/write_multi_usage.script.plan @@ -214,12 +214,12 @@ "Table": "base_write_multi_usage_script_script/Temp" }, { - "Iterator": "%kqp%tx_result_binding_0_1", + "Iterator": "precompute_0_1", "Name": "Iterator" } ], "Node Type": "Upsert-ConstantExpr", - "CTE Name": "tx_result_binding_1_1" + "CTE Name": "precompute_0_1" } ], "Node Type": "Effect" @@ -238,19 +238,19 @@ "Table": "base_write_multi_usage_script_script/Input1" }, { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], "Node Type": "Delete-ConstantExpr", - "CTE Name": "tx_result_binding_1_0" + "CTE Name": "precompute_0_0" } ], "Node Type": "Effect" }, { "PlanNodeId": 6, - "Subplan Name": "CTE tx_result_binding_0_0", + "Subplan Name": "CTE precompute_0_0", "Plans": [ { "PlanNodeId": 5, @@ -263,7 +263,7 @@ }, { "PlanNodeId": 4, - "Subplan Name": "CTE tx_result_binding_0_1", + "Subplan Name": "CTE precompute_0_1", "Plans": [ { "PlanNodeId": 3, diff --git a/ydb/tests/functional/canonical/canondata/test_sql.TestCanonicalFolder1.test_case_write_multi_usage_key.script-script_/write_multi_usage_key.script.plan b/ydb/tests/functional/canonical/canondata/test_sql.TestCanonicalFolder1.test_case_write_multi_usage_key.script-script_/write_multi_usage_key.script.plan index 54ea0473815..a166a3eea69 100644 --- a/ydb/tests/functional/canonical/canondata/test_sql.TestCanonicalFolder1.test_case_write_multi_usage_key.script-script_/write_multi_usage_key.script.plan +++ b/ydb/tests/functional/canonical/canondata/test_sql.TestCanonicalFolder1.test_case_write_multi_usage_key.script-script_/write_multi_usage_key.script.plan @@ -129,19 +129,19 @@ "Table": "base_write_multi_usage_key_script_script/Temp" }, { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], "Node Type": "Upsert-ConstantExpr", - "CTE Name": "tx_result_binding_1_0" + "CTE Name": "precompute_0_0" } ], "Node Type": "Effect" }, { "PlanNodeId": 4, - "Subplan Name": "CTE tx_result_binding_0_0", + "Subplan Name": "CTE precompute_0_0", "Plans": [ { "PlanNodeId": 3, diff --git a/ydb/tests/functional/canonical/canondata/test_sql.TestCanonicalFolder1.test_case_write_write_group_by.script-script_/write_write_group_by.script.plan b/ydb/tests/functional/canonical/canondata/test_sql.TestCanonicalFolder1.test_case_write_write_group_by.script-script_/write_write_group_by.script.plan index 1325937562b..1ae174bb0e3 100644 --- a/ydb/tests/functional/canonical/canondata/test_sql.TestCanonicalFolder1.test_case_write_write_group_by.script-script_/write_write_group_by.script.plan +++ b/ydb/tests/functional/canonical/canondata/test_sql.TestCanonicalFolder1.test_case_write_write_group_by.script-script_/write_write_group_by.script.plan @@ -132,19 +132,19 @@ "Table": "base_write_write_group_by_script_script/Temp" }, { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], "Node Type": "Upsert-ConstantExpr", - "CTE Name": "tx_result_binding_1_0" + "CTE Name": "precompute_0_0" } ], "Node Type": "Effect" }, { "PlanNodeId": 6, - "Subplan Name": "CTE tx_result_binding_0_0", + "Subplan Name": "CTE precompute_0_0", "Plans": [ { "PlanNodeId": 5, diff --git a/ydb/tests/functional/clickbench/canondata/test.test_plans_column_/queries-original-plan-column-0 b/ydb/tests/functional/clickbench/canondata/test.test_plans_column_/queries-original-plan-column-0 index 2e1c2d1611e..2f1119a79f8 100644 --- a/ydb/tests/functional/clickbench/canondata/test.test_plans_column_/queries-original-plan-column-0 +++ b/ydb/tests/functional/clickbench/canondata/test.test_plans_column_/queries-original-plan-column-0 @@ -15,11 +15,11 @@ "PlanNodeType": "ResultSet", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -108,7 +108,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/clickbench/canondata/test.test_plans_column_/queries-original-plan-column-1 b/ydb/tests/functional/clickbench/canondata/test.test_plans_column_/queries-original-plan-column-1 index 02c51550109..fe3e0b15067 100644 --- a/ydb/tests/functional/clickbench/canondata/test.test_plans_column_/queries-original-plan-column-1 +++ b/ydb/tests/functional/clickbench/canondata/test.test_plans_column_/queries-original-plan-column-1 @@ -15,11 +15,11 @@ "PlanNodeType": "ResultSet", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -145,7 +145,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/clickbench/canondata/test.test_plans_column_/queries-original-plan-column-2 b/ydb/tests/functional/clickbench/canondata/test.test_plans_column_/queries-original-plan-column-2 index 55407025a1a..befbc94b3f1 100644 --- a/ydb/tests/functional/clickbench/canondata/test.test_plans_column_/queries-original-plan-column-2 +++ b/ydb/tests/functional/clickbench/canondata/test.test_plans_column_/queries-original-plan-column-2 @@ -15,11 +15,11 @@ "PlanNodeType": "ResultSet", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "[{column0: %kqp%tx_result_binding_0_0.Sum0,column1: %kqp%tx_result_binding_0_0.Count0,column2: %kqp%tx_result_binding_0_0.Avg0}]", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -159,7 +159,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/clickbench/canondata/test.test_plans_column_/queries-original-plan-column-20 b/ydb/tests/functional/clickbench/canondata/test.test_plans_column_/queries-original-plan-column-20 index 95865095f94..fd34e591ddf 100644 --- a/ydb/tests/functional/clickbench/canondata/test.test_plans_column_/queries-original-plan-column-20 +++ b/ydb/tests/functional/clickbench/canondata/test.test_plans_column_/queries-original-plan-column-20 @@ -15,11 +15,11 @@ "PlanNodeType": "ResultSet", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -162,7 +162,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/clickbench/canondata/test.test_plans_column_/queries-original-plan-column-29 b/ydb/tests/functional/clickbench/canondata/test.test_plans_column_/queries-original-plan-column-29 index a4cd67625bb..363fcc03fe6 100644 --- a/ydb/tests/functional/clickbench/canondata/test.test_plans_column_/queries-original-plan-column-29 +++ b/ydb/tests/functional/clickbench/canondata/test.test_plans_column_/queries-original-plan-column-29 @@ -15,11 +15,11 @@ "PlanNodeType": "ResultSet", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "[{column0: %kqp%tx_result_binding_0_0.Sum0,column1: %kqp%tx_result_binding_0_0.Sum1,column10: %kqp%tx_result_binding_0_0.Sum10,column11: %kqp%tx_result_binding_0_0.Sum11,column12: %kqp%tx_result_binding_0_0.Sum12,column13: %kqp%tx_result_binding_0_0.Sum13,column14: %kqp%tx_result_binding_0_0.Sum14,column15: %kqp%tx_result_binding_0_0.Sum15,column16: %kqp%tx_result_binding_0_0.Sum16,column17: %kqp%tx_result_binding_0_0.Sum17,column18: %kqp%tx_result_binding_0_0.Sum18,column19: %kqp%tx_result_binding_0_0.Sum19,column2: %kqp%tx_result_binding_0_0.Sum2,column20: %kqp%tx_result_binding_0_0.Sum20,column21: %kqp%tx_result_binding_0_0.Sum21,column22: %kqp%tx_result_binding_0_0.Sum22,column23: %kqp%tx_result_binding_0_0.Sum23,column24: %kqp%tx_result_binding_0_0.Sum24,column25: %kqp%tx_result_binding_0_0.Sum25,column26: %kqp%tx_result_binding_0_0.Sum26,column27: %kqp%tx_result_binding_0_0.Sum27,column28: %kqp%tx_result_binding_0_0.Sum28,column29: %kqp%tx_result_binding_0_0.Sum29,column3: %kqp%tx_result_binding_0_0.Sum3,column30: %kqp%tx_result_binding_0_0.Sum30,column31: %kqp%tx_result_binding_0_0.Sum31,column32: %kqp%tx_result_binding_0_0.Sum32,column33: %kqp%tx_result_binding_0_0.Sum33,column34: %kqp%tx_result_binding_0_0.Sum34,column35: %kqp%tx_result_binding_0_0.Sum35,column36: %kqp%tx_result_binding_0_0.Sum36,column37: %kqp%tx_result_binding_0_0.Sum37,column38: %kqp%tx_result_binding_0_0.Sum38,column39: %kqp%tx_result_binding_0_0.Sum39,column4: %kqp%tx_result_binding_0_0.Sum4,column40: %kqp%tx_result_binding_0_0.Sum40,column41: %kqp%tx_result_binding_0_0.Sum41,column42: %kqp%tx_result_binding_0_0.Sum42,column43: %kqp%tx_result_binding_0_0.Sum43,column44: %kqp%tx_result_binding_0_0.Sum44,column45: %kqp%tx_result_binding_0_0.Sum45,column46: %kqp%tx_result_binding_0_0.Sum46,column47: %kqp%tx_result_binding_0_0.Sum47,column48: %kqp%tx_result_binding_0_0.Sum48,column49: %kqp%tx_result_binding_0_0.Sum49,column5: %kqp%tx_result_binding_0_0.Sum5,column50: %kqp%tx_result_binding_0_0.Sum50,column51: %kqp%tx_result_binding_0_0.Sum51,column52: %kqp%tx_result_binding_0_0.Sum52,column53: %kqp%tx_result_binding_0_0.Sum53,column54: %kqp%tx_result_binding_0_0.Sum54,column55: %kqp%tx_result_binding_0_0.Sum55,column56: %kqp%tx_result_binding_0_0.Sum56,column57: %kqp%tx_result_binding_0_0.Sum57,column58: %kqp%tx_result_binding_0_0.Sum58,column59: %kqp%tx_result_binding_0_0.Sum59,column6: %kqp%tx_result_binding_0_0.Sum6,column60: %kqp%tx_result_binding_0_0.Sum60,column61: %kqp%tx_result_binding_0_0.Sum61,column62: %kqp%tx_result_binding_0_0.Sum62,column63: %kqp%tx_result_binding_0_0.Sum63,column64: %kqp%tx_result_binding_0_0.Sum64,column65: %kqp%tx_result_binding_0_0.Sum65,column66: %kqp%tx_result_binding_0_0.Sum66,column67: %kqp%tx_result_binding_0_0.Sum67,column68: %kqp%tx_result_binding_0_0.Sum68,column69: %kqp%tx_result_binding_0_0.Sum69,column7: %kqp%tx_result_binding_0_0.Sum7,column70: %kqp%tx_result_binding_0_0.Sum70,column71: %kqp%tx_result_binding_0_0.Sum71,column72: %kqp%tx_result_binding_0_0.Sum72,column73: %kqp%tx_result_binding_0_0.Sum73,column74: %kqp%tx_result_binding_0_0.Sum74,column75: %kqp%tx_result_binding_0_0.Sum75,column76: %kqp%tx_result_binding_0_0.Sum76,column77: %kqp%tx_result_binding_0_0.Sum77,column78: %kqp%tx_result_binding_0_0.Sum78,column79: %kqp%tx_result_binding_0_0.Sum79,column8: %kqp%tx_result_binding_0_0.Sum8,column80: %kqp%tx_result_binding_0_0.Sum80,column81: %kqp%tx_result_binding_0_0.Sum81,column82: %kqp%tx_result_binding_0_0.Sum82,column83: %kqp%tx_result_binding_0_0.Sum83,column84: %kqp%tx_result_binding_0_0.Sum84,column85: %kqp%tx_result_binding_0_0.Sum85,column86: %kqp%tx_result_binding_0_0.Sum86,column87: %kqp%tx_result_binding_0_0.Sum87,column88: %kqp%tx_result_binding_0_0.Sum88,column89: %kqp%tx_result_binding_0_0.Sum89,column9: %kqp%tx_result_binding_0_0.Sum9}]", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -99,7 +99,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/clickbench/canondata/test.test_plans_column_/queries-original-plan-column-3 b/ydb/tests/functional/clickbench/canondata/test.test_plans_column_/queries-original-plan-column-3 index 52cf278bab2..7cdf9d919a5 100644 --- a/ydb/tests/functional/clickbench/canondata/test.test_plans_column_/queries-original-plan-column-3 +++ b/ydb/tests/functional/clickbench/canondata/test.test_plans_column_/queries-original-plan-column-3 @@ -15,11 +15,11 @@ "PlanNodeType": "ResultSet", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -131,7 +131,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/clickbench/canondata/test.test_plans_column_/queries-original-plan-column-4 b/ydb/tests/functional/clickbench/canondata/test.test_plans_column_/queries-original-plan-column-4 index fa247535e37..048a7a33c51 100644 --- a/ydb/tests/functional/clickbench/canondata/test.test_plans_column_/queries-original-plan-column-4 +++ b/ydb/tests/functional/clickbench/canondata/test.test_plans_column_/queries-original-plan-column-4 @@ -15,11 +15,11 @@ "PlanNodeType": "ResultSet", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -125,7 +125,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/clickbench/canondata/test.test_plans_column_/queries-original-plan-column-5 b/ydb/tests/functional/clickbench/canondata/test.test_plans_column_/queries-original-plan-column-5 index 222a6879cae..b5d8f316ae0 100644 --- a/ydb/tests/functional/clickbench/canondata/test.test_plans_column_/queries-original-plan-column-5 +++ b/ydb/tests/functional/clickbench/canondata/test.test_plans_column_/queries-original-plan-column-5 @@ -15,11 +15,11 @@ "PlanNodeType": "ResultSet", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -125,7 +125,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/clickbench/canondata/test.test_plans_column_/queries-original-plan-column-6 b/ydb/tests/functional/clickbench/canondata/test.test_plans_column_/queries-original-plan-column-6 index 52db7aa36e2..1a3595cf47a 100644 --- a/ydb/tests/functional/clickbench/canondata/test.test_plans_column_/queries-original-plan-column-6 +++ b/ydb/tests/functional/clickbench/canondata/test.test_plans_column_/queries-original-plan-column-6 @@ -15,11 +15,11 @@ "PlanNodeType": "ResultSet", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "[{column0: %kqp%tx_result_binding_0_0.Min0,column1: %kqp%tx_result_binding_0_0.Max0}]", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -131,7 +131,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/clickbench/canondata/test.test_plans_row_/queries-original-plan-row-0 b/ydb/tests/functional/clickbench/canondata/test.test_plans_row_/queries-original-plan-row-0 index dd1874964cb..dcb7fdc35a7 100644 --- a/ydb/tests/functional/clickbench/canondata/test.test_plans_row_/queries-original-plan-row-0 +++ b/ydb/tests/functional/clickbench/canondata/test.test_plans_row_/queries-original-plan-row-0 @@ -15,11 +15,11 @@ "PlanNodeType": "ResultSet", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -83,7 +83,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/clickbench/canondata/test.test_plans_row_/queries-original-plan-row-1 b/ydb/tests/functional/clickbench/canondata/test.test_plans_row_/queries-original-plan-row-1 index 24d9104792a..fb274e942d1 100644 --- a/ydb/tests/functional/clickbench/canondata/test.test_plans_row_/queries-original-plan-row-1 +++ b/ydb/tests/functional/clickbench/canondata/test.test_plans_row_/queries-original-plan-row-1 @@ -15,11 +15,11 @@ "PlanNodeType": "ResultSet", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -89,7 +89,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/clickbench/canondata/test.test_plans_row_/queries-original-plan-row-2 b/ydb/tests/functional/clickbench/canondata/test.test_plans_row_/queries-original-plan-row-2 index a3d9caa3bdf..5b80fda5540 100644 --- a/ydb/tests/functional/clickbench/canondata/test.test_plans_row_/queries-original-plan-row-2 +++ b/ydb/tests/functional/clickbench/canondata/test.test_plans_row_/queries-original-plan-row-2 @@ -15,11 +15,11 @@ "PlanNodeType": "ResultSet", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "[{column0: %kqp%tx_result_binding_0_0.Sum0,column1: %kqp%tx_result_binding_0_0.Count0,column2: %kqp%tx_result_binding_0_0.Avg0}]", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -86,7 +86,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/clickbench/canondata/test.test_plans_row_/queries-original-plan-row-20 b/ydb/tests/functional/clickbench/canondata/test.test_plans_row_/queries-original-plan-row-20 index 7f2ceceb649..7db8d319e69 100644 --- a/ydb/tests/functional/clickbench/canondata/test.test_plans_row_/queries-original-plan-row-20 +++ b/ydb/tests/functional/clickbench/canondata/test.test_plans_row_/queries-original-plan-row-20 @@ -15,11 +15,11 @@ "PlanNodeType": "ResultSet", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -89,7 +89,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/clickbench/canondata/test.test_plans_row_/queries-original-plan-row-29 b/ydb/tests/functional/clickbench/canondata/test.test_plans_row_/queries-original-plan-row-29 index 08fd7ef1598..500161ceece 100644 --- a/ydb/tests/functional/clickbench/canondata/test.test_plans_row_/queries-original-plan-row-29 +++ b/ydb/tests/functional/clickbench/canondata/test.test_plans_row_/queries-original-plan-row-29 @@ -15,11 +15,11 @@ "PlanNodeType": "ResultSet", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "[{column0: %kqp%tx_result_binding_0_0.Sum0,column1: %kqp%tx_result_binding_0_0.Sum1,column10: %kqp%tx_result_binding_0_0.Sum10,column11: %kqp%tx_result_binding_0_0.Sum11,column12: %kqp%tx_result_binding_0_0.Sum12,column13: %kqp%tx_result_binding_0_0.Sum13,column14: %kqp%tx_result_binding_0_0.Sum14,column15: %kqp%tx_result_binding_0_0.Sum15,column16: %kqp%tx_result_binding_0_0.Sum16,column17: %kqp%tx_result_binding_0_0.Sum17,column18: %kqp%tx_result_binding_0_0.Sum18,column19: %kqp%tx_result_binding_0_0.Sum19,column2: %kqp%tx_result_binding_0_0.Sum2,column20: %kqp%tx_result_binding_0_0.Sum20,column21: %kqp%tx_result_binding_0_0.Sum21,column22: %kqp%tx_result_binding_0_0.Sum22,column23: %kqp%tx_result_binding_0_0.Sum23,column24: %kqp%tx_result_binding_0_0.Sum24,column25: %kqp%tx_result_binding_0_0.Sum25,column26: %kqp%tx_result_binding_0_0.Sum26,column27: %kqp%tx_result_binding_0_0.Sum27,column28: %kqp%tx_result_binding_0_0.Sum28,column29: %kqp%tx_result_binding_0_0.Sum29,column3: %kqp%tx_result_binding_0_0.Sum3,column30: %kqp%tx_result_binding_0_0.Sum30,column31: %kqp%tx_result_binding_0_0.Sum31,column32: %kqp%tx_result_binding_0_0.Sum32,column33: %kqp%tx_result_binding_0_0.Sum33,column34: %kqp%tx_result_binding_0_0.Sum34,column35: %kqp%tx_result_binding_0_0.Sum35,column36: %kqp%tx_result_binding_0_0.Sum36,column37: %kqp%tx_result_binding_0_0.Sum37,column38: %kqp%tx_result_binding_0_0.Sum38,column39: %kqp%tx_result_binding_0_0.Sum39,column4: %kqp%tx_result_binding_0_0.Sum4,column40: %kqp%tx_result_binding_0_0.Sum40,column41: %kqp%tx_result_binding_0_0.Sum41,column42: %kqp%tx_result_binding_0_0.Sum42,column43: %kqp%tx_result_binding_0_0.Sum43,column44: %kqp%tx_result_binding_0_0.Sum44,column45: %kqp%tx_result_binding_0_0.Sum45,column46: %kqp%tx_result_binding_0_0.Sum46,column47: %kqp%tx_result_binding_0_0.Sum47,column48: %kqp%tx_result_binding_0_0.Sum48,column49: %kqp%tx_result_binding_0_0.Sum49,column5: %kqp%tx_result_binding_0_0.Sum5,column50: %kqp%tx_result_binding_0_0.Sum50,column51: %kqp%tx_result_binding_0_0.Sum51,column52: %kqp%tx_result_binding_0_0.Sum52,column53: %kqp%tx_result_binding_0_0.Sum53,column54: %kqp%tx_result_binding_0_0.Sum54,column55: %kqp%tx_result_binding_0_0.Sum55,column56: %kqp%tx_result_binding_0_0.Sum56,column57: %kqp%tx_result_binding_0_0.Sum57,column58: %kqp%tx_result_binding_0_0.Sum58,column59: %kqp%tx_result_binding_0_0.Sum59,column6: %kqp%tx_result_binding_0_0.Sum6,column60: %kqp%tx_result_binding_0_0.Sum60,column61: %kqp%tx_result_binding_0_0.Sum61,column62: %kqp%tx_result_binding_0_0.Sum62,column63: %kqp%tx_result_binding_0_0.Sum63,column64: %kqp%tx_result_binding_0_0.Sum64,column65: %kqp%tx_result_binding_0_0.Sum65,column66: %kqp%tx_result_binding_0_0.Sum66,column67: %kqp%tx_result_binding_0_0.Sum67,column68: %kqp%tx_result_binding_0_0.Sum68,column69: %kqp%tx_result_binding_0_0.Sum69,column7: %kqp%tx_result_binding_0_0.Sum7,column70: %kqp%tx_result_binding_0_0.Sum70,column71: %kqp%tx_result_binding_0_0.Sum71,column72: %kqp%tx_result_binding_0_0.Sum72,column73: %kqp%tx_result_binding_0_0.Sum73,column74: %kqp%tx_result_binding_0_0.Sum74,column75: %kqp%tx_result_binding_0_0.Sum75,column76: %kqp%tx_result_binding_0_0.Sum76,column77: %kqp%tx_result_binding_0_0.Sum77,column78: %kqp%tx_result_binding_0_0.Sum78,column79: %kqp%tx_result_binding_0_0.Sum79,column8: %kqp%tx_result_binding_0_0.Sum8,column80: %kqp%tx_result_binding_0_0.Sum80,column81: %kqp%tx_result_binding_0_0.Sum81,column82: %kqp%tx_result_binding_0_0.Sum82,column83: %kqp%tx_result_binding_0_0.Sum83,column84: %kqp%tx_result_binding_0_0.Sum84,column85: %kqp%tx_result_binding_0_0.Sum85,column86: %kqp%tx_result_binding_0_0.Sum86,column87: %kqp%tx_result_binding_0_0.Sum87,column88: %kqp%tx_result_binding_0_0.Sum88,column89: %kqp%tx_result_binding_0_0.Sum89,column9: %kqp%tx_result_binding_0_0.Sum9}]", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -85,7 +85,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/clickbench/canondata/test.test_plans_row_/queries-original-plan-row-3 b/ydb/tests/functional/clickbench/canondata/test.test_plans_row_/queries-original-plan-row-3 index 87d2fbc2dfe..e7d86dc69a5 100644 --- a/ydb/tests/functional/clickbench/canondata/test.test_plans_row_/queries-original-plan-row-3 +++ b/ydb/tests/functional/clickbench/canondata/test.test_plans_row_/queries-original-plan-row-3 @@ -15,11 +15,11 @@ "PlanNodeType": "ResultSet", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -85,7 +85,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/clickbench/canondata/test.test_plans_row_/queries-original-plan-row-4 b/ydb/tests/functional/clickbench/canondata/test.test_plans_row_/queries-original-plan-row-4 index 7025cc240a6..3f2bd037ece 100644 --- a/ydb/tests/functional/clickbench/canondata/test.test_plans_row_/queries-original-plan-row-4 +++ b/ydb/tests/functional/clickbench/canondata/test.test_plans_row_/queries-original-plan-row-4 @@ -15,11 +15,11 @@ "PlanNodeType": "ResultSet", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -111,7 +111,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/clickbench/canondata/test.test_plans_row_/queries-original-plan-row-5 b/ydb/tests/functional/clickbench/canondata/test.test_plans_row_/queries-original-plan-row-5 index 55f387a05ec..4ffcd56da0d 100644 --- a/ydb/tests/functional/clickbench/canondata/test.test_plans_row_/queries-original-plan-row-5 +++ b/ydb/tests/functional/clickbench/canondata/test.test_plans_row_/queries-original-plan-row-5 @@ -15,11 +15,11 @@ "PlanNodeType": "ResultSet", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -111,7 +111,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/clickbench/canondata/test.test_plans_row_/queries-original-plan-row-6 b/ydb/tests/functional/clickbench/canondata/test.test_plans_row_/queries-original-plan-row-6 index 4976e9eeffe..e5d6e641b60 100644 --- a/ydb/tests/functional/clickbench/canondata/test.test_plans_row_/queries-original-plan-row-6 +++ b/ydb/tests/functional/clickbench/canondata/test.test_plans_row_/queries-original-plan-row-6 @@ -15,11 +15,11 @@ "PlanNodeType": "ResultSet", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "[{column0: %kqp%tx_result_binding_0_0.Min0,column1: %kqp%tx_result_binding_0_0.Max0}]", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -85,7 +85,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_coalesce-and-join.test_/query_1.plan b/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_coalesce-and-join.test_/query_1.plan index 810fc864b2a..06fac2948d2 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_coalesce-and-join.test_/query_1.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_coalesce-and-join.test_/query_1.plan @@ -43,11 +43,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_4_0", + "CTE Name": "precompute_2_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_2_0", + "Iterator": "precompute_2_0", "Name": "Iterator" } ], @@ -70,7 +70,7 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_4_0", + "CTE Name": "precompute_3_0", "Node Type": "Filter-TablePointLookup-ConstantExpr", "Operators": [ { @@ -85,7 +85,7 @@ "Table": "postgres_jointest/coalesce-and-join.test_plan/b" }, { - "Iterator": "%kqp%tx_result_binding_3_0", + "Iterator": "precompute_3_0", "Name": "Iterator" } ], @@ -118,9 +118,14 @@ "PlanNodeType": "Materialize", "Plans": [ { - "Node Type": "Limit", + "CTE Name": "precompute_2_0", + "Node Type": "Aggregate-Limit", "Operators": [ { + "Input": "precompute_2_0", + "Name": "PartitionByKey" + }, + { "Limit": "1", "Name": "Limit" } @@ -128,7 +133,7 @@ "PlanNodeId": 20 } ], - "Subplan Name": "CTE tx_result_binding_3_0" + "Subplan Name": "CTE precompute_3_0" }, { "Node Type": "Precompute_2", @@ -160,11 +165,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_2_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -187,7 +192,7 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_2_0", + "CTE Name": "precompute_1_0", "Node Type": "Filter-TablePointLookup-ConstantExpr", "Operators": [ { @@ -202,7 +207,7 @@ "Table": "postgres_jointest/coalesce-and-join.test_plan/b" }, { - "Iterator": "%kqp%tx_result_binding_1_0", + "Iterator": "precompute_1_0", "Name": "Iterator" } ], @@ -224,7 +229,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_2_0" + "Subplan Name": "CTE precompute_2_0" }, { "Node Type": "Precompute_1", @@ -233,9 +238,14 @@ "PlanNodeType": "Materialize", "Plans": [ { - "Node Type": "Filter-Limit", + "CTE Name": "precompute_0_0", + "Node Type": "Aggregate-Filter-Limit", "Operators": [ { + "Input": "precompute_0_0", + "Name": "PartitionByKey" + }, + { "Name": "Filter", "Predicate": "Exist(item.x)" }, @@ -247,7 +257,7 @@ "PlanNodeId": 6 } ], - "Subplan Name": "CTE tx_result_binding_1_0" + "Subplan Name": "CTE precompute_1_0" }, { "Node Type": "Precompute_0", @@ -290,7 +300,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_coalesce-and-join.test_/query_2.plan b/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_coalesce-and-join.test_/query_2.plan index db3fb367836..465cf03e6bb 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_coalesce-and-join.test_/query_2.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_coalesce-and-join.test_/query_2.plan @@ -43,11 +43,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_2_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -70,7 +70,7 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_2_0", + "CTE Name": "precompute_1_0", "Node Type": "Filter-TablePointLookup-ConstantExpr", "Operators": [ { @@ -85,7 +85,7 @@ "Table": "postgres_jointest/coalesce-and-join.test_plan/b" }, { - "Iterator": "%kqp%tx_result_binding_1_0", + "Iterator": "precompute_1_0", "Name": "Iterator" } ], @@ -118,9 +118,14 @@ "PlanNodeType": "Materialize", "Plans": [ { - "Node Type": "Filter-Limit", + "CTE Name": "precompute_0_0", + "Node Type": "Aggregate-Filter-Limit", "Operators": [ { + "Input": "precompute_0_0", + "Name": "PartitionByKey" + }, + { "Name": "Filter", "Predicate": "Exist(item.x)" }, @@ -132,7 +137,7 @@ "PlanNodeId": 6 } ], - "Subplan Name": "CTE tx_result_binding_1_0" + "Subplan Name": "CTE precompute_1_0" }, { "Node Type": "Precompute_0", @@ -175,7 +180,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_coalesce-and-join.test_/query_3.plan b/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_coalesce-and-join.test_/query_3.plan index b453f3577b0..ceecdfaa83f 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_coalesce-and-join.test_/query_3.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_coalesce-and-join.test_/query_3.plan @@ -43,11 +43,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_2_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -70,7 +70,7 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_2_0", + "CTE Name": "precompute_1_0", "Node Type": "Filter-TablePointLookup-ConstantExpr", "Operators": [ { @@ -86,7 +86,7 @@ "Table": "postgres_jointest/coalesce-and-join.test_plan/a" }, { - "Iterator": "%kqp%tx_result_binding_1_0", + "Iterator": "precompute_1_0", "Name": "Iterator" } ], @@ -119,9 +119,14 @@ "PlanNodeType": "Materialize", "Plans": [ { - "Node Type": "Filter-Limit", + "CTE Name": "precompute_0_0", + "Node Type": "Aggregate-Filter-Limit", "Operators": [ { + "Input": "precompute_0_0", + "Name": "PartitionByKey" + }, + { "Name": "Filter", "Predicate": "Exist(item.x)" }, @@ -133,7 +138,7 @@ "PlanNodeId": 6 } ], - "Subplan Name": "CTE tx_result_binding_1_0" + "Subplan Name": "CTE precompute_1_0" }, { "Node Type": "Precompute_0", @@ -174,7 +179,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_coalesce-and-join.test_/query_4.plan b/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_coalesce-and-join.test_/query_4.plan index 9fd20e7b415..4048d5074d3 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_coalesce-and-join.test_/query_4.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_coalesce-and-join.test_/query_4.plan @@ -43,11 +43,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_2_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -70,7 +70,7 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_2_0", + "CTE Name": "precompute_1_0", "Node Type": "Filter-TablePointLookup-ConstantExpr", "Operators": [ { @@ -85,7 +85,7 @@ "Table": "postgres_jointest/coalesce-and-join.test_plan/xx" }, { - "Iterator": "%kqp%tx_result_binding_1_0", + "Iterator": "precompute_1_0", "Name": "Iterator" } ], @@ -118,9 +118,14 @@ "PlanNodeType": "Materialize", "Plans": [ { - "Node Type": "Limit", + "CTE Name": "precompute_0_0", + "Node Type": "Aggregate-Limit", "Operators": [ { + "Input": "precompute_0_0", + "Name": "PartitionByKey" + }, + { "Limit": "1", "Name": "Limit" } @@ -128,7 +133,7 @@ "PlanNodeId": 6 } ], - "Subplan Name": "CTE tx_result_binding_1_0" + "Subplan Name": "CTE precompute_1_0" }, { "Node Type": "Precompute_0", @@ -171,7 +176,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join-group-by-with-null.test_/query_2.plan b/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join-group-by-with-null.test_/query_2.plan index 352bb9fa78a..ba480211244 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join-group-by-with-null.test_/query_2.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join-group-by-with-null.test_/query_2.plan @@ -65,11 +65,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_2_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -92,7 +92,7 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_2_0", + "CTE Name": "precompute_1_0", "Node Type": "Filter-TablePointLookup-ConstantExpr", "Operators": [ { @@ -107,7 +107,7 @@ "Table": "postgres_jointest/join-group-by-with-null.test_plan/int8_tbl" }, { - "Iterator": "%kqp%tx_result_binding_1_0", + "Iterator": "precompute_1_0", "Name": "Iterator" } ], @@ -144,9 +144,14 @@ "PlanNodeType": "Materialize", "Plans": [ { - "Node Type": "Filter-Limit", + "CTE Name": "precompute_0_0", + "Node Type": "Aggregate-Filter-Limit", "Operators": [ { + "Input": "precompute_0_0", + "Name": "PartitionByKey" + }, + { "Name": "Filter", "Predicate": "Exist(item.q2)" }, @@ -158,7 +163,7 @@ "PlanNodeId": 6 } ], - "Subplan Name": "CTE tx_result_binding_1_0" + "Subplan Name": "CTE precompute_1_0" }, { "Node Type": "Precompute_0", @@ -201,7 +206,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join-group-by-with-null.test_/query_3.plan b/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join-group-by-with-null.test_/query_3.plan index f77aaefadd2..6598dc1f5ee 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join-group-by-with-null.test_/query_3.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join-group-by-with-null.test_/query_3.plan @@ -65,11 +65,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_2_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -92,7 +92,7 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_2_0", + "CTE Name": "precompute_1_0", "Node Type": "Filter-TablePointLookup-ConstantExpr", "Operators": [ { @@ -107,7 +107,7 @@ "Table": "postgres_jointest/join-group-by-with-null.test_plan/int8_tbl" }, { - "Iterator": "%kqp%tx_result_binding_1_0", + "Iterator": "precompute_1_0", "Name": "Iterator" } ], @@ -144,9 +144,14 @@ "PlanNodeType": "Materialize", "Plans": [ { - "Node Type": "Filter-Limit", + "CTE Name": "precompute_0_0", + "Node Type": "Aggregate-Filter-Limit", "Operators": [ { + "Input": "precompute_0_0", + "Name": "PartitionByKey" + }, + { "Name": "Filter", "Predicate": "Exist(item.q2)" }, @@ -158,7 +163,7 @@ "PlanNodeId": 6 } ], - "Subplan Name": "CTE tx_result_binding_1_0" + "Subplan Name": "CTE precompute_1_0" }, { "Node Type": "Precompute_0", @@ -200,7 +205,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join0.test_/query_2.plan b/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join0.test_/query_2.plan index cc42071cfb7..7a8695f7d08 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join0.test_/query_2.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join0.test_/query_2.plan @@ -122,7 +122,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join0.test_/query_6.plan b/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join0.test_/query_6.plan index cd920d005f7..b24c036f4ea 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join0.test_/query_6.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join0.test_/query_6.plan @@ -46,11 +46,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_2_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -73,7 +73,7 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_2_0", + "CTE Name": "precompute_1_0", "Node Type": "Filter-TablePointLookup-ConstantExpr", "Operators": [ { @@ -89,7 +89,7 @@ "Table": "postgres_jointest/join0.test_plan/tenk1" }, { - "Iterator": "%kqp%tx_result_binding_1_0", + "Iterator": "precompute_1_0", "Name": "Iterator" } ], @@ -119,9 +119,14 @@ "PlanNodeType": "Materialize", "Plans": [ { - "Node Type": "Filter-Limit", + "CTE Name": "precompute_0_0", + "Node Type": "Aggregate-Filter-Limit", "Operators": [ { + "Input": "precompute_0_0", + "Name": "PartitionByKey" + }, + { "Name": "Filter", "Predicate": "Exist(item.subq1.y1)" }, @@ -133,7 +138,7 @@ "PlanNodeId": 24 } ], - "Subplan Name": "CTE tx_result_binding_1_0" + "Subplan Name": "CTE precompute_1_0" }, { "Node Type": "Precompute_0", @@ -359,7 +364,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join1.test_/query_1.plan b/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join1.test_/query_1.plan index 65949c562e9..e48691e5397 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join1.test_/query_1.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join1.test_/query_1.plan @@ -24,7 +24,7 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_2_0", + "CTE Name": "precompute_1_0", "Node Type": "TopSort-InnerJoin (MapJoin)-Filter-TablePointLookup-ConstantExpr", "Operators": [ { @@ -48,7 +48,7 @@ "Table": "postgres_jointest/join1.test_plan/J2_TBL" }, { - "Iterator": "%kqp%tx_result_binding_1_0", + "Iterator": "precompute_1_0", "Name": "Iterator" } ], @@ -74,9 +74,14 @@ "PlanNodeType": "Materialize", "Plans": [ { - "Node Type": "Filter-Limit", + "CTE Name": "precompute_0_0", + "Node Type": "Aggregate-Filter-Limit", "Operators": [ { + "Input": "precompute_0_0", + "Name": "PartitionByKey" + }, + { "Name": "Filter", "Predicate": "Exist(item.i)" }, @@ -88,7 +93,7 @@ "PlanNodeId": 6 } ], - "Subplan Name": "CTE tx_result_binding_1_0" + "Subplan Name": "CTE precompute_1_0" }, { "Node Type": "Precompute_0", @@ -131,7 +136,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join1.test_/query_13.plan b/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join1.test_/query_13.plan index 92ca1eb5ce7..b3f3d8868e9 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join1.test_/query_13.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join1.test_/query_13.plan @@ -46,11 +46,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_2_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -73,7 +73,7 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_2_0", + "CTE Name": "precompute_1_0", "Node Type": "Filter-TablePointLookup-ConstantExpr", "Operators": [ { @@ -89,7 +89,7 @@ "Table": "postgres_jointest/join1.test_plan/J2_TBL" }, { - "Iterator": "%kqp%tx_result_binding_1_0", + "Iterator": "precompute_1_0", "Name": "Iterator" } ], @@ -119,9 +119,14 @@ "PlanNodeType": "Materialize", "Plans": [ { - "Node Type": "Filter-Limit", + "CTE Name": "precompute_0_0", + "Node Type": "Aggregate-Filter-Limit", "Operators": [ { + "Input": "precompute_0_0", + "Name": "PartitionByKey" + }, + { "Name": "Filter", "Predicate": "Exist(item.i)" }, @@ -133,7 +138,7 @@ "PlanNodeId": 6 } ], - "Subplan Name": "CTE tx_result_binding_1_0" + "Subplan Name": "CTE precompute_1_0" }, { "Node Type": "Precompute_0", @@ -178,7 +183,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join1.test_/query_14.plan b/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join1.test_/query_14.plan index b91bc7fe495..83fb247d220 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join1.test_/query_14.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join1.test_/query_14.plan @@ -42,11 +42,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_2_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -69,7 +69,7 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_2_0", + "CTE Name": "precompute_1_0", "Node Type": "Filter-TablePointLookup-ConstantExpr", "Operators": [ { @@ -85,7 +85,7 @@ "Table": "postgres_jointest/join1.test_plan/J2_TBL" }, { - "Iterator": "%kqp%tx_result_binding_1_0", + "Iterator": "precompute_1_0", "Name": "Iterator" } ], @@ -115,9 +115,14 @@ "PlanNodeType": "Materialize", "Plans": [ { - "Node Type": "Filter-Limit", + "CTE Name": "precompute_0_0", + "Node Type": "Aggregate-Filter-Limit", "Operators": [ { + "Input": "precompute_0_0", + "Name": "PartitionByKey" + }, + { "Name": "Filter", "Predicate": "Exist(item.i)" }, @@ -129,7 +134,7 @@ "PlanNodeId": 6 } ], - "Subplan Name": "CTE tx_result_binding_1_0" + "Subplan Name": "CTE precompute_1_0" }, { "Node Type": "Precompute_0", @@ -174,7 +179,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join1.test_/query_2.plan b/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join1.test_/query_2.plan index c47093dbfd8..cfecbc162ec 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join1.test_/query_2.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join1.test_/query_2.plan @@ -24,7 +24,7 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_2_0", + "CTE Name": "precompute_1_0", "Node Type": "TopSort-InnerJoin (MapJoin)-Filter-TablePointLookup-ConstantExpr", "Operators": [ { @@ -48,7 +48,7 @@ "Table": "postgres_jointest/join1.test_plan/J2_TBL" }, { - "Iterator": "%kqp%tx_result_binding_1_0", + "Iterator": "precompute_1_0", "Name": "Iterator" } ], @@ -76,9 +76,14 @@ "PlanNodeType": "Materialize", "Plans": [ { - "Node Type": "Filter-Limit", + "CTE Name": "precompute_0_0", + "Node Type": "Aggregate-Filter-Limit", "Operators": [ { + "Input": "precompute_0_0", + "Name": "PartitionByKey" + }, + { "Name": "Filter", "Predicate": "Exist(item.i)" }, @@ -90,7 +95,7 @@ "PlanNodeId": 6 } ], - "Subplan Name": "CTE tx_result_binding_1_0" + "Subplan Name": "CTE precompute_1_0" }, { "Node Type": "Precompute_0", @@ -135,7 +140,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join1.test_/query_3.plan b/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join1.test_/query_3.plan index c47093dbfd8..cfecbc162ec 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join1.test_/query_3.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join1.test_/query_3.plan @@ -24,7 +24,7 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_2_0", + "CTE Name": "precompute_1_0", "Node Type": "TopSort-InnerJoin (MapJoin)-Filter-TablePointLookup-ConstantExpr", "Operators": [ { @@ -48,7 +48,7 @@ "Table": "postgres_jointest/join1.test_plan/J2_TBL" }, { - "Iterator": "%kqp%tx_result_binding_1_0", + "Iterator": "precompute_1_0", "Name": "Iterator" } ], @@ -76,9 +76,14 @@ "PlanNodeType": "Materialize", "Plans": [ { - "Node Type": "Filter-Limit", + "CTE Name": "precompute_0_0", + "Node Type": "Aggregate-Filter-Limit", "Operators": [ { + "Input": "precompute_0_0", + "Name": "PartitionByKey" + }, + { "Name": "Filter", "Predicate": "Exist(item.i)" }, @@ -90,7 +95,7 @@ "PlanNodeId": 6 } ], - "Subplan Name": "CTE tx_result_binding_1_0" + "Subplan Name": "CTE precompute_1_0" }, { "Node Type": "Precompute_0", @@ -135,7 +140,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join1.test_/query_5.plan b/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join1.test_/query_5.plan index c47093dbfd8..cfecbc162ec 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join1.test_/query_5.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join1.test_/query_5.plan @@ -24,7 +24,7 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_2_0", + "CTE Name": "precompute_1_0", "Node Type": "TopSort-InnerJoin (MapJoin)-Filter-TablePointLookup-ConstantExpr", "Operators": [ { @@ -48,7 +48,7 @@ "Table": "postgres_jointest/join1.test_plan/J2_TBL" }, { - "Iterator": "%kqp%tx_result_binding_1_0", + "Iterator": "precompute_1_0", "Name": "Iterator" } ], @@ -76,9 +76,14 @@ "PlanNodeType": "Materialize", "Plans": [ { - "Node Type": "Filter-Limit", + "CTE Name": "precompute_0_0", + "Node Type": "Aggregate-Filter-Limit", "Operators": [ { + "Input": "precompute_0_0", + "Name": "PartitionByKey" + }, + { "Name": "Filter", "Predicate": "Exist(item.i)" }, @@ -90,7 +95,7 @@ "PlanNodeId": 6 } ], - "Subplan Name": "CTE tx_result_binding_1_0" + "Subplan Name": "CTE precompute_1_0" }, { "Node Type": "Precompute_0", @@ -135,7 +140,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join1.test_/query_7.plan b/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join1.test_/query_7.plan index 86425eb3b13..b5bf9ab9217 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join1.test_/query_7.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join1.test_/query_7.plan @@ -43,11 +43,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_2_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -70,7 +70,7 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_2_0", + "CTE Name": "precompute_1_0", "Node Type": "Filter-TablePointLookup-ConstantExpr", "Operators": [ { @@ -86,7 +86,7 @@ "Table": "postgres_jointest/join1.test_plan/J2_TBL" }, { - "Iterator": "%kqp%tx_result_binding_1_0", + "Iterator": "precompute_1_0", "Name": "Iterator" } ], @@ -122,9 +122,14 @@ "PlanNodeType": "Materialize", "Plans": [ { - "Node Type": "Filter-Limit", + "CTE Name": "precompute_0_0", + "Node Type": "Aggregate-Filter-Limit", "Operators": [ { + "Input": "precompute_0_0", + "Name": "PartitionByKey" + }, + { "Name": "Filter", "Predicate": "Exist(item.i)" }, @@ -136,7 +141,7 @@ "PlanNodeId": 6 } ], - "Subplan Name": "CTE tx_result_binding_1_0" + "Subplan Name": "CTE precompute_1_0" }, { "Node Type": "Precompute_0", @@ -181,7 +186,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join1.test_/query_8.plan b/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join1.test_/query_8.plan index 86425eb3b13..b5bf9ab9217 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join1.test_/query_8.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join1.test_/query_8.plan @@ -43,11 +43,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_2_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -70,7 +70,7 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_2_0", + "CTE Name": "precompute_1_0", "Node Type": "Filter-TablePointLookup-ConstantExpr", "Operators": [ { @@ -86,7 +86,7 @@ "Table": "postgres_jointest/join1.test_plan/J2_TBL" }, { - "Iterator": "%kqp%tx_result_binding_1_0", + "Iterator": "precompute_1_0", "Name": "Iterator" } ], @@ -122,9 +122,14 @@ "PlanNodeType": "Materialize", "Plans": [ { - "Node Type": "Filter-Limit", + "CTE Name": "precompute_0_0", + "Node Type": "Aggregate-Filter-Limit", "Operators": [ { + "Input": "precompute_0_0", + "Name": "PartitionByKey" + }, + { "Name": "Filter", "Predicate": "Exist(item.i)" }, @@ -136,7 +141,7 @@ "PlanNodeId": 6 } ], - "Subplan Name": "CTE tx_result_binding_1_0" + "Subplan Name": "CTE precompute_1_0" }, { "Node Type": "Precompute_0", @@ -181,7 +186,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join2.test_/query_10.plan b/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join2.test_/query_10.plan index fe058020009..0476946a37a 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join2.test_/query_10.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join2.test_/query_10.plan @@ -57,11 +57,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_2_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -84,7 +84,7 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_2_0", + "CTE Name": "precompute_1_0", "Node Type": "Filter-TablePointLookup-ConstantExpr", "Operators": [ { @@ -100,7 +100,7 @@ "Table": "postgres_jointest/join2.test_plan/y" }, { - "Iterator": "%kqp%tx_result_binding_1_0", + "Iterator": "precompute_1_0", "Name": "Iterator" } ], @@ -178,9 +178,14 @@ "PlanNodeType": "Materialize", "Plans": [ { - "Node Type": "Filter-Limit", + "CTE Name": "precompute_0_0", + "Node Type": "Aggregate-Filter-Limit", "Operators": [ { + "Input": "precompute_0_0", + "Name": "PartitionByKey" + }, + { "Name": "Filter", "Predicate": "Exist(item.x1)" }, @@ -192,7 +197,7 @@ "PlanNodeId": 6 } ], - "Subplan Name": "CTE tx_result_binding_1_0" + "Subplan Name": "CTE precompute_1_0" }, { "Node Type": "Precompute_0", @@ -239,7 +244,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join2.test_/query_11.plan b/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join2.test_/query_11.plan index 242cdb8db27..1b51b3501d9 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join2.test_/query_11.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join2.test_/query_11.plan @@ -61,11 +61,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_2_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -88,7 +88,7 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_2_0", + "CTE Name": "precompute_1_0", "Node Type": "Filter-TablePointLookup-ConstantExpr", "Operators": [ { @@ -104,7 +104,7 @@ "Table": "postgres_jointest/join2.test_plan/y" }, { - "Iterator": "%kqp%tx_result_binding_1_0", + "Iterator": "precompute_1_0", "Name": "Iterator" } ], @@ -182,9 +182,14 @@ "PlanNodeType": "Materialize", "Plans": [ { - "Node Type": "Filter-Limit", + "CTE Name": "precompute_0_0", + "Node Type": "Aggregate-Filter-Limit", "Operators": [ { + "Input": "precompute_0_0", + "Name": "PartitionByKey" + }, + { "Name": "Filter", "Predicate": "Exist(item.x1)" }, @@ -196,7 +201,7 @@ "PlanNodeId": 6 } ], - "Subplan Name": "CTE tx_result_binding_1_0" + "Subplan Name": "CTE precompute_1_0" }, { "Node Type": "Precompute_0", @@ -239,7 +244,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join2.test_/query_12.plan b/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join2.test_/query_12.plan index 27df15b69d1..b949b4a8aaa 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join2.test_/query_12.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join2.test_/query_12.plan @@ -57,11 +57,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_2_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -84,7 +84,7 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_2_0", + "CTE Name": "precompute_1_0", "Node Type": "Filter-TablePointLookup-ConstantExpr", "Operators": [ { @@ -100,7 +100,7 @@ "Table": "postgres_jointest/join2.test_plan/y" }, { - "Iterator": "%kqp%tx_result_binding_1_0", + "Iterator": "precompute_1_0", "Name": "Iterator" } ], @@ -178,9 +178,14 @@ "PlanNodeType": "Materialize", "Plans": [ { - "Node Type": "Filter-Limit", + "CTE Name": "precompute_0_0", + "Node Type": "Aggregate-Filter-Limit", "Operators": [ { + "Input": "precompute_0_0", + "Name": "PartitionByKey" + }, + { "Name": "Filter", "Predicate": "Exist(item.x1)" }, @@ -192,7 +197,7 @@ "PlanNodeId": 6 } ], - "Subplan Name": "CTE tx_result_binding_1_0" + "Subplan Name": "CTE precompute_1_0" }, { "Node Type": "Precompute_0", @@ -235,7 +240,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join2.test_/query_2.plan b/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join2.test_/query_2.plan index 66b8cf03438..3bcb9356cd7 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join2.test_/query_2.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join2.test_/query_2.plan @@ -24,7 +24,7 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_2_0", + "CTE Name": "precompute_1_0", "Node Type": "TopSort-InnerJoin (MapJoin)-Filter-TablePointLookup-ConstantExpr", "Operators": [ { @@ -48,7 +48,7 @@ "Table": "postgres_jointest/join2.test_plan/t3" }, { - "Iterator": "%kqp%tx_result_binding_1_0", + "Iterator": "precompute_1_0", "Name": "Iterator" } ], @@ -73,9 +73,14 @@ "PlanNodeType": "Materialize", "Plans": [ { - "Node Type": "Filter-Limit", + "CTE Name": "precompute_0_0", + "Node Type": "Aggregate-Filter-Limit", "Operators": [ { + "Input": "precompute_0_0", + "Name": "PartitionByKey" + }, + { "Name": "Filter", "Predicate": "Exist(item.name)" }, @@ -87,7 +92,7 @@ "PlanNodeId": 6 } ], - "Subplan Name": "CTE tx_result_binding_1_0" + "Subplan Name": "CTE precompute_1_0" }, { "Node Type": "Precompute_0", @@ -130,7 +135,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join2.test_/query_3.plan b/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join2.test_/query_3.plan index 8a16ebbd653..ce576555528 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join2.test_/query_3.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join2.test_/query_3.plan @@ -43,11 +43,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_2_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -70,7 +70,7 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_2_0", + "CTE Name": "precompute_1_0", "Node Type": "Filter-TablePointLookup-ConstantExpr", "Operators": [ { @@ -86,7 +86,7 @@ "Table": "postgres_jointest/join2.test_plan/t3" }, { - "Iterator": "%kqp%tx_result_binding_1_0", + "Iterator": "precompute_1_0", "Name": "Iterator" } ], @@ -119,9 +119,14 @@ "PlanNodeType": "Materialize", "Plans": [ { - "Node Type": "Filter-Limit", + "CTE Name": "precompute_0_0", + "Node Type": "Aggregate-Filter-Limit", "Operators": [ { + "Input": "precompute_0_0", + "Name": "PartitionByKey" + }, + { "Name": "Filter", "Predicate": "Exist(item.name)" }, @@ -133,7 +138,7 @@ "PlanNodeId": 6 } ], - "Subplan Name": "CTE tx_result_binding_1_0" + "Subplan Name": "CTE precompute_1_0" }, { "Node Type": "Precompute_0", @@ -176,7 +181,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join2.test_/query_7.plan b/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join2.test_/query_7.plan index 7e49622d549..793c28d8e42 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join2.test_/query_7.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join2.test_/query_7.plan @@ -42,11 +42,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_2_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -69,7 +69,7 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_2_0", + "CTE Name": "precompute_1_0", "Node Type": "Filter-TablePointLookup-ConstantExpr", "Operators": [ { @@ -85,7 +85,7 @@ "Table": "postgres_jointest/join2.test_plan/y" }, { - "Iterator": "%kqp%tx_result_binding_1_0", + "Iterator": "precompute_1_0", "Name": "Iterator" } ], @@ -115,9 +115,14 @@ "PlanNodeType": "Materialize", "Plans": [ { - "Node Type": "Filter-Limit", + "CTE Name": "precompute_0_0", + "Node Type": "Aggregate-Filter-Limit", "Operators": [ { + "Input": "precompute_0_0", + "Name": "PartitionByKey" + }, + { "Name": "Filter", "Predicate": "Exist(item.x1)" }, @@ -129,7 +134,7 @@ "PlanNodeId": 6 } ], - "Subplan Name": "CTE tx_result_binding_1_0" + "Subplan Name": "CTE precompute_1_0" }, { "Node Type": "Precompute_0", @@ -176,7 +181,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join2.test_/query_8.plan b/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join2.test_/query_8.plan index 21624a503c5..f45ae1e9345 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join2.test_/query_8.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join2.test_/query_8.plan @@ -46,11 +46,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_2_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -73,7 +73,7 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_2_0", + "CTE Name": "precompute_1_0", "Node Type": "Filter-TablePointLookup-ConstantExpr", "Operators": [ { @@ -89,7 +89,7 @@ "Table": "postgres_jointest/join2.test_plan/y" }, { - "Iterator": "%kqp%tx_result_binding_1_0", + "Iterator": "precompute_1_0", "Name": "Iterator" } ], @@ -119,9 +119,14 @@ "PlanNodeType": "Materialize", "Plans": [ { - "Node Type": "Filter-Limit", + "CTE Name": "precompute_0_0", + "Node Type": "Aggregate-Filter-Limit", "Operators": [ { + "Input": "precompute_0_0", + "Name": "PartitionByKey" + }, + { "Name": "Filter", "Predicate": "Exist(item.x1)" }, @@ -133,7 +138,7 @@ "PlanNodeId": 6 } ], - "Subplan Name": "CTE tx_result_binding_1_0" + "Subplan Name": "CTE precompute_1_0" }, { "Node Type": "Precompute_0", @@ -176,7 +181,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join2.test_/query_9.plan b/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join2.test_/query_9.plan index 27df15b69d1..b949b4a8aaa 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join2.test_/query_9.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join2.test_/query_9.plan @@ -57,11 +57,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_2_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -84,7 +84,7 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_2_0", + "CTE Name": "precompute_1_0", "Node Type": "Filter-TablePointLookup-ConstantExpr", "Operators": [ { @@ -100,7 +100,7 @@ "Table": "postgres_jointest/join2.test_plan/y" }, { - "Iterator": "%kqp%tx_result_binding_1_0", + "Iterator": "precompute_1_0", "Name": "Iterator" } ], @@ -178,9 +178,14 @@ "PlanNodeType": "Materialize", "Plans": [ { - "Node Type": "Filter-Limit", + "CTE Name": "precompute_0_0", + "Node Type": "Aggregate-Filter-Limit", "Operators": [ { + "Input": "precompute_0_0", + "Name": "PartitionByKey" + }, + { "Name": "Filter", "Predicate": "Exist(item.x1)" }, @@ -192,7 +197,7 @@ "PlanNodeId": 6 } ], - "Subplan Name": "CTE tx_result_binding_1_0" + "Subplan Name": "CTE precompute_1_0" }, { "Node Type": "Precompute_0", @@ -235,7 +240,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join3.test_/query_2.plan b/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join3.test_/query_2.plan index e889f3d43ff..b0861501b09 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join3.test_/query_2.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join3.test_/query_2.plan @@ -43,11 +43,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_2_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -70,7 +70,7 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_2_0", + "CTE Name": "precompute_1_0", "Node Type": "Filter-TablePointLookup-ConstantExpr", "Operators": [ { @@ -85,7 +85,7 @@ "Table": "postgres_jointest/join3.test_plan/child" }, { - "Iterator": "%kqp%tx_result_binding_1_0", + "Iterator": "precompute_1_0", "Name": "Iterator" } ], @@ -118,9 +118,14 @@ "PlanNodeType": "Materialize", "Plans": [ { - "Node Type": "Filter-Limit", + "CTE Name": "precompute_0_0", + "Node Type": "Aggregate-Filter-Limit", "Operators": [ { + "Input": "precompute_0_0", + "Name": "PartitionByKey" + }, + { "Name": "Filter", "Predicate": "Exist(item.k)" }, @@ -132,7 +137,7 @@ "PlanNodeId": 6 } ], - "Subplan Name": "CTE tx_result_binding_1_0" + "Subplan Name": "CTE precompute_1_0" }, { "Node Type": "Precompute_0", @@ -174,7 +179,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join3.test_/query_4.plan b/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join3.test_/query_4.plan index 16be6d7474b..4808ea60976 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join3.test_/query_4.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join3.test_/query_4.plan @@ -42,11 +42,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_3_0", + "CTE Name": "precompute_1_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_1_0", + "Iterator": "precompute_1_0", "Name": "Iterator" } ], @@ -69,7 +69,7 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_3_0", + "CTE Name": "precompute_2_0", "Node Type": "Filter-TablePointLookup-ConstantExpr", "Operators": [ { @@ -84,7 +84,7 @@ "Table": "postgres_jointest/join3.test_plan/child" }, { - "Iterator": "%kqp%tx_result_binding_2_0", + "Iterator": "precompute_2_0", "Name": "Iterator" } ], @@ -114,9 +114,14 @@ "PlanNodeType": "Materialize", "Plans": [ { - "Node Type": "Filter-Limit", + "CTE Name": "precompute_1_0", + "Node Type": "Aggregate-Filter-Limit", "Operators": [ { + "Input": "precompute_1_0", + "Name": "PartitionByKey" + }, + { "Name": "Filter", "Predicate": "Exist(item.k)" }, @@ -128,7 +133,7 @@ "PlanNodeId": 6 } ], - "Subplan Name": "CTE tx_result_binding_2_0" + "Subplan Name": "CTE precompute_2_0" }, { "Node Type": "Precompute_1", @@ -146,7 +151,7 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "TablePointLookup-ConstantExpr", "Operators": [ { @@ -158,7 +163,7 @@ "Table": "postgres_jointest/join3.test_plan/parent" }, { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -172,7 +177,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_1_0" + "Subplan Name": "CTE precompute_1_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join3.test_/query_5.plan b/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join3.test_/query_5.plan index 5a7c2ad8227..d1b3d119bf5 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join3.test_/query_5.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join3.test_/query_5.plan @@ -24,7 +24,7 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_5_0", + "CTE Name": "precompute_4_0", "Node Type": "Limit-InnerJoin (MapJoin)-Filter-TablePointLookup-ConstantExpr", "Operators": [ { @@ -46,7 +46,7 @@ "Table": "postgres_jointest/join3.test_plan/parent" }, { - "Iterator": "%kqp%tx_result_binding_4_0", + "Iterator": "precompute_4_0", "Name": "Iterator" } ], @@ -68,9 +68,14 @@ "PlanNodeType": "Materialize", "Plans": [ { - "Node Type": "Filter-Limit", + "CTE Name": "precompute_3_0", + "Node Type": "Aggregate-Filter-Limit", "Operators": [ { + "Input": "precompute_3_0", + "Name": "PartitionByKey" + }, + { "Name": "Filter", "Predicate": "Exist(item.p_1.k)" }, @@ -82,7 +87,7 @@ "PlanNodeId": 20 } ], - "Subplan Name": "CTE tx_result_binding_4_0" + "Subplan Name": "CTE precompute_4_0" }, { "Node Type": "Precompute_3", @@ -114,11 +119,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_3_0", + "CTE Name": "precompute_1_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_1_0", + "Iterator": "precompute_1_0", "Name": "Iterator" } ], @@ -141,7 +146,7 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_3_0", + "CTE Name": "precompute_2_0", "Node Type": "Filter-TablePointLookup-ConstantExpr", "Operators": [ { @@ -156,7 +161,7 @@ "Table": "postgres_jointest/join3.test_plan/child" }, { - "Iterator": "%kqp%tx_result_binding_2_0", + "Iterator": "precompute_2_0", "Name": "Iterator" } ], @@ -178,7 +183,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_3_0" + "Subplan Name": "CTE precompute_3_0" }, { "Node Type": "Precompute_2", @@ -187,9 +192,14 @@ "PlanNodeType": "Materialize", "Plans": [ { - "Node Type": "Filter-Limit", + "CTE Name": "precompute_1_0", + "Node Type": "Aggregate-Filter-Limit", "Operators": [ { + "Input": "precompute_1_0", + "Name": "PartitionByKey" + }, + { "Name": "Filter", "Predicate": "Exist(item.k)" }, @@ -201,7 +211,7 @@ "PlanNodeId": 6 } ], - "Subplan Name": "CTE tx_result_binding_2_0" + "Subplan Name": "CTE precompute_2_0" }, { "Node Type": "Precompute_1", @@ -219,7 +229,7 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "TablePointLookup-ConstantExpr", "Operators": [ { @@ -231,7 +241,7 @@ "Table": "postgres_jointest/join3.test_plan/parent" }, { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -245,7 +255,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_1_0" + "Subplan Name": "CTE precompute_1_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join3.test_/query_6.plan b/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join3.test_/query_6.plan index 339363f5867..d3d036be86d 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join3.test_/query_6.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join3.test_/query_6.plan @@ -46,11 +46,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_2_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -73,7 +73,7 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_2_0", + "CTE Name": "precompute_1_0", "Node Type": "Filter-TablePointLookup-ConstantExpr", "Operators": [ { @@ -88,7 +88,7 @@ "Table": "postgres_jointest/join3.test_plan/qa" }, { - "Iterator": "%kqp%tx_result_binding_1_0", + "Iterator": "precompute_1_0", "Name": "Iterator" } ], @@ -118,9 +118,14 @@ "PlanNodeType": "Materialize", "Plans": [ { - "Node Type": "Filter-Limit", + "CTE Name": "precompute_0_0", + "Node Type": "Aggregate-Filter-Limit", "Operators": [ { + "Input": "precompute_0_0", + "Name": "PartitionByKey" + }, + { "Name": "Filter", "Predicate": "Exist(item.a_id)" }, @@ -132,7 +137,7 @@ "PlanNodeId": 6 } ], - "Subplan Name": "CTE tx_result_binding_1_0" + "Subplan Name": "CTE precompute_1_0" }, { "Node Type": "Precompute_0", @@ -174,7 +179,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join3.test_/query_7.plan b/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join3.test_/query_7.plan index 339363f5867..d3d036be86d 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join3.test_/query_7.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join3.test_/query_7.plan @@ -46,11 +46,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_2_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -73,7 +73,7 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_2_0", + "CTE Name": "precompute_1_0", "Node Type": "Filter-TablePointLookup-ConstantExpr", "Operators": [ { @@ -88,7 +88,7 @@ "Table": "postgres_jointest/join3.test_plan/qa" }, { - "Iterator": "%kqp%tx_result_binding_1_0", + "Iterator": "precompute_1_0", "Name": "Iterator" } ], @@ -118,9 +118,14 @@ "PlanNodeType": "Materialize", "Plans": [ { - "Node Type": "Filter-Limit", + "CTE Name": "precompute_0_0", + "Node Type": "Aggregate-Filter-Limit", "Operators": [ { + "Input": "precompute_0_0", + "Name": "PartitionByKey" + }, + { "Name": "Filter", "Predicate": "Exist(item.a_id)" }, @@ -132,7 +137,7 @@ "PlanNodeId": 6 } ], - "Subplan Name": "CTE tx_result_binding_1_0" + "Subplan Name": "CTE precompute_1_0" }, { "Node Type": "Precompute_0", @@ -174,7 +179,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join4.test_/query_13.plan b/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join4.test_/query_13.plan index 6dfc4f42fbb..c2f3f9cef52 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join4.test_/query_13.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join4.test_/query_13.plan @@ -43,11 +43,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_2_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -70,7 +70,7 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_2_0", + "CTE Name": "precompute_1_0", "Node Type": "Filter-TablePointLookup-ConstantExpr", "Operators": [ { @@ -86,7 +86,7 @@ "Table": "postgres_jointest/join4.test_plan/qrt2" }, { - "Iterator": "%kqp%tx_result_binding_1_0", + "Iterator": "precompute_1_0", "Name": "Iterator" } ], @@ -120,9 +120,14 @@ "PlanNodeType": "Materialize", "Plans": [ { - "Node Type": "Filter-Limit", + "CTE Name": "precompute_0_0", + "Node Type": "Aggregate-Filter-Limit", "Operators": [ { + "Input": "precompute_0_0", + "Name": "PartitionByKey" + }, + { "Name": "Filter", "Predicate": "Exist(item.a)" }, @@ -134,7 +139,7 @@ "PlanNodeId": 6 } ], - "Subplan Name": "CTE tx_result_binding_1_0" + "Subplan Name": "CTE precompute_1_0" }, { "Node Type": "Precompute_0", @@ -177,7 +182,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join4.test_/query_5.plan b/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join4.test_/query_5.plan index 166bfa62c13..2bf573c8c55 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join4.test_/query_5.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join4.test_/query_5.plan @@ -42,11 +42,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_2_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -69,7 +69,7 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_2_0", + "CTE Name": "precompute_1_0", "Node Type": "Filter-TablePointLookup-ConstantExpr", "Operators": [ { @@ -85,7 +85,7 @@ "Table": "postgres_jointest/join4.test_plan/tqb" }, { - "Iterator": "%kqp%tx_result_binding_1_0", + "Iterator": "precompute_1_0", "Name": "Iterator" } ], @@ -115,9 +115,14 @@ "PlanNodeType": "Materialize", "Plans": [ { - "Node Type": "Filter-Limit-Filter", + "CTE Name": "precompute_0_0", + "Node Type": "Aggregate-Filter-Limit-Filter", "Operators": [ { + "Input": "precompute_0_0", + "Name": "PartitionByKey" + }, + { "Name": "Filter", "Predicate": "Exist(item.i)" }, @@ -133,7 +138,7 @@ "PlanNodeId": 6 } ], - "Subplan Name": "CTE tx_result_binding_1_0" + "Subplan Name": "CTE precompute_1_0" }, { "Node Type": "Precompute_0", @@ -174,7 +179,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join4.test_/query_6.plan b/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join4.test_/query_6.plan index a441a639c40..6e66e104599 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join4.test_/query_6.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join4.test_/query_6.plan @@ -42,11 +42,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_4_0", + "CTE Name": "precompute_2_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_2_0", + "Iterator": "precompute_2_0", "Name": "Iterator" } ], @@ -69,7 +69,7 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_4_0", + "CTE Name": "precompute_3_0", "Node Type": "Filter-TablePointLookup-ConstantExpr", "Operators": [ { @@ -84,7 +84,7 @@ "Table": "postgres_jointest/join4.test_plan/zt1" }, { - "Iterator": "%kqp%tx_result_binding_3_0", + "Iterator": "precompute_3_0", "Name": "Iterator" } ], @@ -114,9 +114,14 @@ "PlanNodeType": "Materialize", "Plans": [ { - "Node Type": "Filter-Limit", + "CTE Name": "precompute_2_0", + "Node Type": "Aggregate-Filter-Limit", "Operators": [ { + "Input": "precompute_2_0", + "Name": "PartitionByKey" + }, + { "Name": "Filter", "Predicate": "Exist(item.zt3.f3)" }, @@ -128,7 +133,7 @@ "PlanNodeId": 20 } ], - "Subplan Name": "CTE tx_result_binding_3_0" + "Subplan Name": "CTE precompute_3_0" }, { "Node Type": "Precompute_2", @@ -160,11 +165,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_2_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -187,7 +192,7 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_2_0", + "CTE Name": "precompute_1_0", "Node Type": "Filter-TablePointLookup-ConstantExpr", "Operators": [ { @@ -202,7 +207,7 @@ "Table": "postgres_jointest/join4.test_plan/zt3" }, { - "Iterator": "%kqp%tx_result_binding_1_0", + "Iterator": "precompute_1_0", "Name": "Iterator" } ], @@ -224,7 +229,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_2_0" + "Subplan Name": "CTE precompute_2_0" }, { "Node Type": "Precompute_1", @@ -233,9 +238,14 @@ "PlanNodeType": "Materialize", "Plans": [ { - "Node Type": "Filter-Limit", + "CTE Name": "precompute_0_0", + "Node Type": "Aggregate-Filter-Limit", "Operators": [ { + "Input": "precompute_0_0", + "Name": "PartitionByKey" + }, + { "Name": "Filter", "Predicate": "Exist(item.f2)" }, @@ -247,7 +257,7 @@ "PlanNodeId": 6 } ], - "Subplan Name": "CTE tx_result_binding_1_0" + "Subplan Name": "CTE precompute_1_0" }, { "Node Type": "Precompute_0", @@ -289,7 +299,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join4.test_/query_7.plan b/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join4.test_/query_7.plan index 870008a0c01..24c28893886 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join4.test_/query_7.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_postgres.TestPGSQL.test_sql_suite_plan-jointest_join4.test_/query_7.plan @@ -24,7 +24,7 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_2_0", + "CTE Name": "precompute_1_0", "Node Type": "Limit-Filter-InnerJoin (MapJoin)-Filter-TablePointLookup-ConstantExpr", "Operators": [ { @@ -51,7 +51,7 @@ "Table": "postgres_jointest/join4.test_plan/tt6" }, { - "Iterator": "%kqp%tx_result_binding_1_0", + "Iterator": "precompute_1_0", "Name": "Iterator" } ], @@ -73,9 +73,14 @@ "PlanNodeType": "Materialize", "Plans": [ { - "Node Type": "Filter-Limit", + "CTE Name": "precompute_0_0", + "Node Type": "Aggregate-Filter-Limit", "Operators": [ { + "Input": "precompute_0_0", + "Name": "PartitionByKey" + }, + { "Name": "Filter", "Predicate": "Exist(item.f1)" }, @@ -87,7 +92,7 @@ "PlanNodeId": 6 } ], - "Subplan Name": "CTE tx_result_binding_1_0" + "Subplan Name": "CTE precompute_1_0" }, { "Node Type": "Precompute_0", @@ -130,7 +135,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-1.test_/query_101.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-1.test_/query_101.plan index 084401cd74b..abc5cc02866 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-1.test_/query_101.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-1.test_/query_101.plan @@ -80,11 +80,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -168,7 +168,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-1.test_/query_103.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-1.test_/query_103.plan index 4b83f1cde49..e3966bb5a75 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-1.test_/query_103.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-1.test_/query_103.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -168,7 +168,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-1.test_/query_11.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-1.test_/query_11.plan index 0b73cfe822d..5dbd46f9786 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-1.test_/query_11.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-1.test_/query_11.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -171,7 +171,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-1.test_/query_114.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-1.test_/query_114.plan index 7d9a2cbd67c..b5d6cb2f1dc 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-1.test_/query_114.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-1.test_/query_114.plan @@ -80,11 +80,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -167,7 +167,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-1.test_/query_115.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-1.test_/query_115.plan index da60161a567..dfdec6a2443 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-1.test_/query_115.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-1.test_/query_115.plan @@ -77,11 +77,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -166,7 +166,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-1.test_/query_121.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-1.test_/query_121.plan index 98c1c474ac8..7abf2081206 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-1.test_/query_121.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-1.test_/query_121.plan @@ -75,11 +75,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -160,7 +160,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-1.test_/query_13.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-1.test_/query_13.plan index 6ae4a46477c..bf06c8192f3 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-1.test_/query_13.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-1.test_/query_13.plan @@ -77,11 +77,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -167,7 +167,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-1.test_/query_16.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-1.test_/query_16.plan index aef096540fd..f9e2034f6c8 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-1.test_/query_16.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-1.test_/query_16.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -166,7 +166,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-1.test_/query_17.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-1.test_/query_17.plan index 80d1ffc0f1b..fc7ae0de376 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-1.test_/query_17.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-1.test_/query_17.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -170,7 +170,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-1.test_/query_18.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-1.test_/query_18.plan index c61238c1335..330258b1e25 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-1.test_/query_18.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-1.test_/query_18.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -172,7 +172,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-1.test_/query_2.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-1.test_/query_2.plan index 4d201555205..31244b93741 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-1.test_/query_2.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-1.test_/query_2.plan @@ -75,11 +75,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -158,7 +158,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-1.test_/query_20.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-1.test_/query_20.plan index fc9872991ed..97bc2c2bf37 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-1.test_/query_20.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-1.test_/query_20.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -170,7 +170,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-1.test_/query_25.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-1.test_/query_25.plan index 0578ef7913f..9e1c76adf2a 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-1.test_/query_25.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-1.test_/query_25.plan @@ -76,11 +76,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -163,7 +163,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-1.test_/query_31.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-1.test_/query_31.plan index 963114dd736..231780199fe 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-1.test_/query_31.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-1.test_/query_31.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -169,7 +169,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-1.test_/query_49.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-1.test_/query_49.plan index 19bcba0e9dd..f2bd3f63cd0 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-1.test_/query_49.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-1.test_/query_49.plan @@ -77,11 +77,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -167,7 +167,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-1.test_/query_74.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-1.test_/query_74.plan index 4d201555205..31244b93741 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-1.test_/query_74.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-1.test_/query_74.plan @@ -75,11 +75,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -158,7 +158,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-1.test_/query_76.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-1.test_/query_76.plan index 9d3003af731..3a11c3d24e4 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-1.test_/query_76.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-1.test_/query_76.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -168,7 +168,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-1.test_/query_8.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-1.test_/query_8.plan index 7b4aca65fae..3b79ac6a427 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-1.test_/query_8.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-1.test_/query_8.plan @@ -76,11 +76,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -165,7 +165,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-1.test_/query_82.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-1.test_/query_82.plan index 8217402fa84..196731c2652 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-1.test_/query_82.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-1.test_/query_82.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -169,7 +169,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-1.test_/query_85.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-1.test_/query_85.plan index e10ec1aca6b..524c7eaf54f 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-1.test_/query_85.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-1.test_/query_85.plan @@ -77,11 +77,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -166,7 +166,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_102.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_102.plan index 1e18408b6f8..2ba01df8f85 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_102.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_102.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -170,7 +170,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_110.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_110.plan index cb2629c145d..fe10295e851 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_110.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_110.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -172,7 +172,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_112.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_112.plan index 62690126a90..43f36472d6d 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_112.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_112.plan @@ -77,11 +77,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -167,7 +167,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_113.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_113.plan index c93c4236250..03b8008cffa 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_113.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_113.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -166,7 +166,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_130.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_130.plan index 2423c9087a8..167ca44ab8f 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_130.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_130.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -169,7 +169,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_15.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_15.plan index 1f6b3948fc8..3eee868d478 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_15.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_15.plan @@ -76,11 +76,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -162,7 +162,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_2.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_2.plan index 13183dad067..1be7f2d8ab0 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_2.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_2.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -171,7 +171,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_42.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_42.plan index c4c4ec61f60..1d5e8f76317 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_42.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_42.plan @@ -76,11 +76,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -166,7 +166,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_44.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_44.plan index 420a1bf48d8..ed4179aadc4 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_44.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_44.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -170,7 +170,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_54.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_54.plan index b67ec506955..b57f0009ca9 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_54.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_54.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -171,7 +171,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_55.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_55.plan index 89582b2dcd6..fec74e364bc 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_55.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_55.plan @@ -77,11 +77,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -167,7 +167,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_60.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_60.plan index 9c7785c50a0..261d7c28df5 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_60.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_60.plan @@ -77,11 +77,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -168,7 +168,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_69.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_69.plan index f7eb4e4f268..82a76c64735 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_69.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_69.plan @@ -76,11 +76,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -164,7 +164,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_7.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_7.plan index 540a9d35e10..19cff1c9877 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_7.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_7.plan @@ -80,11 +80,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -166,7 +166,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_77.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_77.plan index db3361cf008..41420eecd41 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_77.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_77.plan @@ -80,11 +80,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -167,7 +167,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_8.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_8.plan index 25f4f34866a..c2d86622742 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_8.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_8.plan @@ -80,11 +80,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -166,7 +166,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_83.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_83.plan index fc5f2cf0809..0eb840ffb1c 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_83.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_83.plan @@ -79,11 +79,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -162,7 +162,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_89.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_89.plan index 98fb6ca092d..8a4bb26d10f 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_89.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_89.plan @@ -75,11 +75,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -163,7 +163,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_90.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_90.plan index 60830c80916..cf2d78a8f3c 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_90.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_90.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -167,7 +167,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_91.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_91.plan index 9a79dd03cf0..3ef692ad1e7 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_91.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_91.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -167,7 +167,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_92.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_92.plan index 1141e3620f3..01c2041a098 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_92.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_92.plan @@ -80,11 +80,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -167,7 +167,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_97.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_97.plan index 7f95f1a2283..7ea8caab9f9 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_97.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_97.plan @@ -76,11 +76,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -161,7 +161,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_99.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_99.plan index c2f94ce0e9d..de40891bb88 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_99.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-2.test_/query_99.plan @@ -77,11 +77,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -168,7 +168,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_1.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_1.plan index e6c7326e698..3b6a057d935 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_1.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_1.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -172,7 +172,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_108.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_108.plan index ab7df7678cc..50862715e3d 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_108.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_108.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -170,7 +170,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_110.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_110.plan index 721ba40cafb..746b7d6127b 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_110.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_110.plan @@ -76,11 +76,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -161,7 +161,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_111.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_111.plan index 4f7459dd5f6..eac4d08e756 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_111.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_111.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -170,7 +170,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_112.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_112.plan index 53c776caf69..7cab280c361 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_112.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_112.plan @@ -80,11 +80,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -167,7 +167,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_113.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_113.plan index 74ab07ac06d..e0cac9672de 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_113.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_113.plan @@ -80,11 +80,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -166,7 +166,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_114.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_114.plan index d2db979f6ff..432ae10d465 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_114.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_114.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -169,7 +169,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_119.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_119.plan index 7d856f0b612..09662dd86bb 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_119.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_119.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -168,7 +168,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_120.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_120.plan index 689e1dfc026..b3f5cb6f8ee 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_120.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_120.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -172,7 +172,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_127.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_127.plan index 1a5fed44256..663982cb04d 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_127.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_127.plan @@ -77,11 +77,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -166,7 +166,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_128.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_128.plan index 01ab66dfc6a..4f59a856ffa 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_128.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_128.plan @@ -79,11 +79,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -162,7 +162,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_13.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_13.plan index 1e454d24b51..95fac69368b 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_13.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_13.plan @@ -76,11 +76,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -164,7 +164,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_132.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_132.plan index 87e5d354499..46305917f90 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_132.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_132.plan @@ -77,11 +77,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -167,7 +167,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_137.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_137.plan index eb1ebc345e3..6a33e43adb5 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_137.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_137.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -169,7 +169,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_141.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_141.plan index 8fd34184851..35886a3f4a6 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_141.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_141.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -168,7 +168,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_19.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_19.plan index 1b5a40249b3..5a1a71758f9 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_19.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_19.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -169,7 +169,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_25.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_25.plan index 164b5c3fba3..2dbb0524975 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_25.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_25.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -171,7 +171,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_3.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_3.plan index 891884829fa..ea2637f733f 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_3.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_3.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -169,7 +169,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_33.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_33.plan index 552c088768d..10f1cf2e225 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_33.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_33.plan @@ -80,11 +80,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -165,7 +165,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_41.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_41.plan index ccbfd6de0bf..0cba9ae0674 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_41.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_41.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -170,7 +170,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_49.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_49.plan index 66f25dcdc06..fc862dfce2d 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_49.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_49.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -170,7 +170,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_52.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_52.plan index e51debbf0bb..6b22ab916cf 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_52.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_52.plan @@ -77,11 +77,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -168,7 +168,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_59.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_59.plan index be66ef5b85b..dba4dc24454 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_59.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_59.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -169,7 +169,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_6.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_6.plan index 4bffd0b64cf..1292edd8379 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_6.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_6.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -169,7 +169,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_63.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_63.plan index 102b8045607..120adcd916d 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_63.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_63.plan @@ -77,11 +77,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -166,7 +166,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_64.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_64.plan index 4610aa9dbab..8c2cb851988 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_64.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_64.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -171,7 +171,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_7.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_7.plan index 2074507b94a..0d86600965a 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_7.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_7.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -169,7 +169,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_72.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_72.plan index f0bf70b709a..76210c5e927 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_72.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_72.plan @@ -80,11 +80,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -165,7 +165,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_8.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_8.plan index e1d8df2ca84..aaee94208e1 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_8.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_8.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -170,7 +170,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_87.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_87.plan index 78ba8d551ab..3f7a96572ba 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_87.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_87.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -171,7 +171,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_92.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_92.plan index ded1ff53a1c..8dd8241a2fb 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_92.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-3.test_/query_92.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -168,7 +168,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_107.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_107.plan index 2f9e48e2fb3..f39bf7fabba 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_107.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_107.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -169,7 +169,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_110.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_110.plan index 3a197cb491f..304c7987716 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_110.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_110.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -168,7 +168,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_111.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_111.plan index 1e7c2a58496..26c862bef7b 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_111.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_111.plan @@ -77,11 +77,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -167,7 +167,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_114.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_114.plan index 2c8750341a3..00db0ba61e3 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_114.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_114.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -168,7 +168,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_115.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_115.plan index b0fff275e1c..8c09c648e1d 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_115.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_115.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -170,7 +170,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_116.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_116.plan index 1d813036e5b..239e3418729 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_116.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_116.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -166,7 +166,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_12.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_12.plan index c68fa8515d4..2659f5d2dc6 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_12.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_12.plan @@ -76,11 +76,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -163,7 +163,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_123.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_123.plan index c0eca2e545f..51b21fe6c55 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_123.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_123.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -170,7 +170,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_126.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_126.plan index 3d8a4d2777e..2c1593a4881 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_126.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_126.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -171,7 +171,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_133.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_133.plan index c992cdbe269..4c73a564f38 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_133.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_133.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -170,7 +170,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_134.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_134.plan index b0709d0135c..9f2386f2f57 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_134.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_134.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -169,7 +169,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_2.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_2.plan index 1f06dd239dc..62d2074f0cd 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_2.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_2.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -168,7 +168,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_21.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_21.plan index 46b3499f81c..a66569181a9 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_21.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_21.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -171,7 +171,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_24.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_24.plan index 442542aab11..d2d7815d2ef 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_24.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_24.plan @@ -75,11 +75,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -161,7 +161,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_3.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_3.plan index 410b895acd5..fabea11e681 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_3.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_3.plan @@ -77,11 +77,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -168,7 +168,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_31.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_31.plan index 4f2420baee0..093f6bf255f 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_31.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_31.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -169,7 +169,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_40.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_40.plan index 869429623d3..f049e4158dd 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_40.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_40.plan @@ -76,11 +76,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -166,7 +166,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_44.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_44.plan index 0670acc5dca..2157a02e5b9 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_44.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_44.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -170,7 +170,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_5.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_5.plan index f2f6b314c13..e4b9d0dc103 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_5.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_5.plan @@ -75,11 +75,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -162,7 +162,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_55.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_55.plan index 9abea25d64e..804f5d97ec2 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_55.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_55.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -171,7 +171,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_60.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_60.plan index 58ac512b139..49f03f8c918 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_60.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_60.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -172,7 +172,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_65.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_65.plan index cc344dcf69a..a9d3b8c99d1 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_65.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_65.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -168,7 +168,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_81.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_81.plan index 7fdb014749c..cafeb0c59a7 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_81.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_81.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -167,7 +167,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_84.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_84.plan index 2a64f6f0daf..bd32e20a8be 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_84.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_84.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -170,7 +170,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_89.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_89.plan index 36d3504a167..b1fb7bd6f86 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_89.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_89.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -172,7 +172,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_90.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_90.plan index a6985f5553a..b4eb5f946bd 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_90.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_90.plan @@ -77,11 +77,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -167,7 +167,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_91.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_91.plan index e6be206d2d9..e2de6340803 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_91.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_91.plan @@ -76,11 +76,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -165,7 +165,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_95.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_95.plan index 9a0360ad24f..e80fb14762d 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_95.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_95.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -168,7 +168,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_98.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_98.plan index 3fea357c5cd..1ae2dc94b16 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_98.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-4.test_/query_98.plan @@ -80,11 +80,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -167,7 +167,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-5.test_/query_11.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-5.test_/query_11.plan index b844ef96033..5510c3bd1d5 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-5.test_/query_11.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-5.test_/query_11.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -172,7 +172,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-5.test_/query_24.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-5.test_/query_24.plan index f824aff9b94..8920b401899 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-5.test_/query_24.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-5.test_/query_24.plan @@ -80,11 +80,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -168,7 +168,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-5.test_/query_26.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-5.test_/query_26.plan index ea96bb08860..15931afd28a 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-5.test_/query_26.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-5.test_/query_26.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -170,7 +170,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-5.test_/query_29.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-5.test_/query_29.plan index 30b7b244ec7..2c59721e32e 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-5.test_/query_29.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-5.test_/query_29.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -167,7 +167,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-5.test_/query_30.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-5.test_/query_30.plan index f2c865e8fe1..cdd2ca6282b 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-5.test_/query_30.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-5.test_/query_30.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -171,7 +171,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-5.test_/query_34.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-5.test_/query_34.plan index bd9ca18267d..8d583f27673 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-5.test_/query_34.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-5.test_/query_34.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -172,7 +172,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-5.test_/query_8.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-5.test_/query_8.plan index 0160038f50e..f657ba4377e 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-5.test_/query_8.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select1-5.test_/query_8.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -170,7 +170,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_1.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_1.plan index 44ffbbdea2f..cc78f8b7488 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_1.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_1.plan @@ -75,11 +75,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -158,7 +158,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_10.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_10.plan index d2e65553214..a09288739c7 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_10.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_10.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -170,7 +170,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_107.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_107.plan index 44ffbbdea2f..cc78f8b7488 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_107.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_107.plan @@ -75,11 +75,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -158,7 +158,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_109.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_109.plan index 9976343aba1..a9a403c782b 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_109.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_109.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -171,7 +171,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_11.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_11.plan index 11237ac9e79..f97068e7e2b 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_11.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_11.plan @@ -77,11 +77,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -166,7 +166,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_111.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_111.plan index 8c913e52498..076beacaa6f 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_111.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_111.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -171,7 +171,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_116.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_116.plan index 80e92118bdb..6499ed39b94 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_116.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_116.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -171,7 +171,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_122.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_122.plan index 184bf145f1c..98fe578da84 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_122.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_122.plan @@ -77,11 +77,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -164,7 +164,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_125.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_125.plan index feb912ec116..c8ffbbb283a 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_125.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_125.plan @@ -133,7 +133,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_137.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_137.plan index 1847db6ddea..7734dc88e70 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_137.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_137.plan @@ -80,11 +80,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -166,7 +166,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_15.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_15.plan index 1508fc7cfad..03795f525a3 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_15.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_15.plan @@ -135,7 +135,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_20.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_20.plan index 0e7adbe8989..d925d423151 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_20.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_20.plan @@ -77,11 +77,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -167,7 +167,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_25.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_25.plan index e1e97617c11..030008d4d6f 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_25.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_25.plan @@ -133,7 +133,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_29.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_29.plan index a12664cc708..d7a5598c181 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_29.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_29.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -167,7 +167,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_40.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_40.plan index d926a344929..aa2c179fba9 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_40.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_40.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -166,7 +166,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_48.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_48.plan index ee596fa8930..28724beac2a 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_48.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_48.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -168,7 +168,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_51.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_51.plan index 91ebd997710..d4db3f46d7f 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_51.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_51.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -168,7 +168,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_52.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_52.plan index ff72906f7ba..8bb99095a0c 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_52.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_52.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -167,7 +167,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_60.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_60.plan index 201c85b46fb..d3317eb7c88 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_60.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_60.plan @@ -80,11 +80,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -168,7 +168,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_65.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_65.plan index 5f72c300a07..f08524fb61f 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_65.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_65.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -170,7 +170,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_75.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_75.plan index 26564109a57..bcaca66891f 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_75.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_75.plan @@ -133,7 +133,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_8.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_8.plan index 8e24d666b10..543d8c77a1e 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_8.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_8.plan @@ -77,11 +77,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -168,7 +168,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_89.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_89.plan index 2210e410224..fc8afd48192 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_89.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_89.plan @@ -77,11 +77,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -165,7 +165,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_91.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_91.plan index ecc99ccbda5..787e54bf077 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_91.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_91.plan @@ -80,11 +80,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -165,7 +165,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_94.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_94.plan index 90beae695b4..60390c9f223 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_94.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-1.test_/query_94.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -171,7 +171,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_1.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_1.plan index f4e78330541..304b3a0fbc0 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_1.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_1.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -170,7 +170,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_102.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_102.plan index 58e94b8ce3d..c3ab3e80f4d 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_102.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_102.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -171,7 +171,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_119.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_119.plan index 55738b50841..75215cdcda9 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_119.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_119.plan @@ -77,11 +77,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -168,7 +168,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_121.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_121.plan index bbbcbaeef02..8a1ca180ccd 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_121.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_121.plan @@ -77,11 +77,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -165,7 +165,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_127.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_127.plan index 55d6e98c502..181b1d5a21a 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_127.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_127.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -168,7 +168,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_133.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_133.plan index 89a500a3b8a..b92d425471d 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_133.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_133.plan @@ -80,11 +80,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -167,7 +167,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_137.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_137.plan index 425cf145a47..8f690506c48 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_137.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_137.plan @@ -77,11 +77,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -163,7 +163,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_139.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_139.plan index 898face471f..e620edcc710 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_139.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_139.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -169,7 +169,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_143.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_143.plan index 79afa1abdf3..1d09f45d25d 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_143.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_143.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -170,7 +170,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_155.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_155.plan index 81af1c056d1..231a4deeaf0 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_155.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_155.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -169,7 +169,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_157.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_157.plan index 41004fcb2d7..1aeae301a6b 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_157.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_157.plan @@ -80,11 +80,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -165,7 +165,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_2.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_2.plan index 617e599f178..df51b2d7b5d 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_2.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_2.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -170,7 +170,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_25.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_25.plan index 8a88ebd76ab..c1ff5c77999 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_25.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_25.plan @@ -77,11 +77,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -168,7 +168,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_38.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_38.plan index 194ff7cbe9d..a5d6c3a8da4 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_38.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_38.plan @@ -80,11 +80,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -167,7 +167,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_4.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_4.plan index 09313851690..b42987e8397 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_4.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_4.plan @@ -77,11 +77,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -164,7 +164,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_40.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_40.plan index 9a7071cb37d..cfba878bec7 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_40.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_40.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -170,7 +170,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_55.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_55.plan index d3efffa2b40..37231ebeb43 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_55.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_55.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -171,7 +171,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_57.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_57.plan index 715f2fd2b31..0c14aa26703 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_57.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_57.plan @@ -77,11 +77,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -167,7 +167,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_61.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_61.plan index 99b67617448..2408097af7a 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_61.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_61.plan @@ -80,11 +80,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -168,7 +168,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_67.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_67.plan index 7545b3432d7..409ba27b4a8 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_67.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_67.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -171,7 +171,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_75.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_75.plan index 67b5e208643..e6d08dc736b 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_75.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_75.plan @@ -76,11 +76,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -164,7 +164,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_77.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_77.plan index 68aa2e59a8d..16a89d7e399 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_77.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_77.plan @@ -80,11 +80,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -164,7 +164,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_85.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_85.plan index 82871dc4ee8..e4033fda35d 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_85.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_85.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -171,7 +171,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_89.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_89.plan index 8c9b781bd7f..a9fec31ad78 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_89.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_89.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -170,7 +170,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_91.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_91.plan index f6a78d83824..c8655806bc1 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_91.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_91.plan @@ -77,11 +77,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -168,7 +168,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_97.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_97.plan index e1c61d2d854..79785a36df0 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_97.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_97.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -170,7 +170,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_98.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_98.plan index 63a6bad0d11..3aa40fb87f7 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_98.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-2.test_/query_98.plan @@ -76,11 +76,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -161,7 +161,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_10.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_10.plan index 73679225076..5f025204b7c 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_10.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_10.plan @@ -77,11 +77,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -164,7 +164,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_107.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_107.plan index e13db88b056..dc52d4e7fd2 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_107.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_107.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -166,7 +166,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_111.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_111.plan index 7d70d270359..46779790343 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_111.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_111.plan @@ -80,11 +80,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -164,7 +164,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_112.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_112.plan index 1a4f30bfcde..23617eb966e 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_112.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_112.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -168,7 +168,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_114.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_114.plan index 17f8a4654f4..ea5bc02c0ca 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_114.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_114.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -171,7 +171,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_117.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_117.plan index e18795dfc9e..a7553440205 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_117.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_117.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -167,7 +167,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_13.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_13.plan index 3a32363a396..00f1ef82cd0 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_13.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_13.plan @@ -77,11 +77,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -168,7 +168,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_135.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_135.plan index b9d545a6824..56ad39ce543 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_135.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_135.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -170,7 +170,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_140.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_140.plan index 08099d7c725..f2069376027 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_140.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_140.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -171,7 +171,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_144.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_144.plan index 114ea0f19bb..66b6d440bb9 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_144.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_144.plan @@ -80,11 +80,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -166,7 +166,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_145.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_145.plan index d966ae695bd..f95bdce7d12 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_145.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_145.plan @@ -80,11 +80,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -166,7 +166,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_147.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_147.plan index cb49ef8bf57..4c2b6595302 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_147.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_147.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -170,7 +170,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_17.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_17.plan index 252ab263c2a..42bf1c0f999 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_17.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_17.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -170,7 +170,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_2.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_2.plan index 0dd38f9c98d..698d2ae4a69 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_2.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_2.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -172,7 +172,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_24.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_24.plan index 2c9411980d0..78b8b18c00a 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_24.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_24.plan @@ -133,7 +133,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_27.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_27.plan index f96769de1de..a7b2aa80f84 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_27.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_27.plan @@ -80,11 +80,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -166,7 +166,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_31.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_31.plan index fcd9aa9e945..2069c17e12d 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_31.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_31.plan @@ -75,11 +75,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -162,7 +162,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_44.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_44.plan index 937059a9c07..14f72ebcd2f 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_44.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_44.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -172,7 +172,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_48.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_48.plan index 193b133979b..970bec835e9 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_48.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_48.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -172,7 +172,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_5.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_5.plan index 21042eb4ccc..cb89928e170 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_5.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_5.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -169,7 +169,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_51.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_51.plan index 35bbb51ed2a..a2fe8c74853 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_51.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_51.plan @@ -128,7 +128,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_54.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_54.plan index 82709fa785f..82495ceeaa5 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_54.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_54.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -167,7 +167,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_59.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_59.plan index 4449670bcdb..447c09a2faa 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_59.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_59.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -172,7 +172,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_6.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_6.plan index b58842d5a82..5a99d9adb17 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_6.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_6.plan @@ -80,11 +80,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -170,7 +170,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_69.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_69.plan index 6d04009fd2c..64d31b6d86f 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_69.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_69.plan @@ -80,11 +80,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -164,7 +164,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_70.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_70.plan index 84645097566..212bed2e9bf 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_70.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_70.plan @@ -80,11 +80,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -169,7 +169,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_74.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_74.plan index 51df2817ee4..eff273367c2 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_74.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_74.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -169,7 +169,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_78.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_78.plan index 69eda482f18..a30bcaf730e 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_78.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_78.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -168,7 +168,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_79.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_79.plan index 6c3a9f58a54..25b72e9f751 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_79.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_79.plan @@ -77,11 +77,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -166,7 +166,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_8.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_8.plan index 577c838954f..794e906a560 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_8.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_8.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -171,7 +171,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_82.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_82.plan index d878318c55c..bbce29911e5 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_82.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_82.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -169,7 +169,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_85.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_85.plan index 646beb83593..b750ac3a1a1 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_85.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_85.plan @@ -133,7 +133,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_9.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_9.plan index 1ea8f328e15..7ceba293477 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_9.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-3.test_/query_9.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -169,7 +169,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_10.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_10.plan index 29eb64fa456..65e6af6cb42 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_10.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_10.plan @@ -76,11 +76,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -163,7 +163,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_102.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_102.plan index 5afa3f25f10..29b863f3287 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_102.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_102.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -172,7 +172,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_107.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_107.plan index 0c7be25df3a..5982d630215 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_107.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_107.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -170,7 +170,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_111.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_111.plan index 7b4ebb0f4e6..b4538a088b1 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_111.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_111.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -171,7 +171,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_114.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_114.plan index 3f20fd062ac..fa7e0094315 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_114.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_114.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -172,7 +172,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_120.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_120.plan index 5286082bba1..ade83148147 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_120.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_120.plan @@ -135,7 +135,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_134.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_134.plan index c3b22459ae3..c8a5104df51 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_134.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_134.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -172,7 +172,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_14.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_14.plan index b9ec7195a4c..ab91bbc3862 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_14.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_14.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -170,7 +170,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_19.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_19.plan index e1db1ad2a9f..7e555c2fc30 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_19.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_19.plan @@ -76,11 +76,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -163,7 +163,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_2.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_2.plan index 8840fb74b91..841858d6b10 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_2.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_2.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -171,7 +171,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_20.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_20.plan index 6e053eef527..246948702b0 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_20.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_20.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -168,7 +168,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_28.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_28.plan index 27f6d5aba78..fca4637e5d0 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_28.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_28.plan @@ -76,11 +76,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -164,7 +164,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_33.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_33.plan index 3f83852a3c6..b03d8c30675 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_33.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_33.plan @@ -80,11 +80,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -166,7 +166,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_37.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_37.plan index aa479d29462..adb72234b8e 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_37.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_37.plan @@ -80,11 +80,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -168,7 +168,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_39.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_39.plan index 238f4d5d352..e0635b3936c 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_39.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_39.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -169,7 +169,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_45.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_45.plan index 3ba2e3f6d27..8d8bf89f795 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_45.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_45.plan @@ -76,11 +76,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -164,7 +164,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_52.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_52.plan index c28bdbf29b1..fcca4b44ffc 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_52.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_52.plan @@ -77,11 +77,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -164,7 +164,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_61.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_61.plan index 3835b16de9d..3762fa33703 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_61.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_61.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -166,7 +166,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_63.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_63.plan index 76024d110d5..52170d62248 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_63.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_63.plan @@ -77,11 +77,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -168,7 +168,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_67.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_67.plan index 8582c9ca630..2ed3aa45cf4 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_67.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_67.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -167,7 +167,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_68.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_68.plan index e7695f2f413..198a3265f2b 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_68.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_68.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -171,7 +171,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_70.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_70.plan index 616fb7d5e03..2ccc522efd0 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_70.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_70.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -171,7 +171,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_71.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_71.plan index 87135a2b282..01c64572b6a 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_71.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_71.plan @@ -77,11 +77,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -167,7 +167,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_74.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_74.plan index 804d8c99177..65a0cb09dbe 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_74.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_74.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -172,7 +172,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_8.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_8.plan index d496733fddb..63b8de02b99 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_8.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_8.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -172,7 +172,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_82.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_82.plan index c28bdbf29b1..fcca4b44ffc 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_82.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_82.plan @@ -77,11 +77,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -164,7 +164,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_84.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_84.plan index e7c20586597..3150cc9a41c 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_84.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_84.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -169,7 +169,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_86.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_86.plan index b5a9c107b70..91028265e00 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_86.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_86.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -166,7 +166,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_89.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_89.plan index d1160eb4abd..98f4f677162 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_89.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_89.plan @@ -80,11 +80,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -166,7 +166,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_91.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_91.plan index 8752619b01b..5fdbdac6e3e 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_91.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_91.plan @@ -80,11 +80,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -168,7 +168,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_96.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_96.plan index 7fd45edf599..53ffd058992 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_96.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_96.plan @@ -132,7 +132,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_98.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_98.plan index ad6ba83c92a..2e983914197 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_98.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select2-4.test_/query_98.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -170,7 +170,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-1.test_/query_1.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-1.test_/query_1.plan index d9eed027815..36c08c1e6d2 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-1.test_/query_1.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-1.test_/query_1.plan @@ -75,11 +75,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -158,7 +158,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-1.test_/query_131.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-1.test_/query_131.plan index 4a22782cf40..04440844047 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-1.test_/query_131.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-1.test_/query_131.plan @@ -77,11 +77,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -163,7 +163,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-1.test_/query_132.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-1.test_/query_132.plan index 4a22782cf40..04440844047 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-1.test_/query_132.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-1.test_/query_132.plan @@ -77,11 +77,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -163,7 +163,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-1.test_/query_17.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-1.test_/query_17.plan index 7ffa06d347e..285b7626d9e 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-1.test_/query_17.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-1.test_/query_17.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -170,7 +170,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-1.test_/query_18.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-1.test_/query_18.plan index 553a357ffd5..eb2f4129761 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-1.test_/query_18.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-1.test_/query_18.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -170,7 +170,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-1.test_/query_19.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-1.test_/query_19.plan index 3bc4cea88c8..16bc39855bd 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-1.test_/query_19.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-1.test_/query_19.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -170,7 +170,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-1.test_/query_2.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-1.test_/query_2.plan index d9eed027815..36c08c1e6d2 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-1.test_/query_2.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-1.test_/query_2.plan @@ -75,11 +75,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -158,7 +158,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-1.test_/query_20.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-1.test_/query_20.plan index a948ae45f42..e93a4854fbe 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-1.test_/query_20.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-1.test_/query_20.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -170,7 +170,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-1.test_/query_39.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-1.test_/query_39.plan index 3e45fcd0567..2c48c47b858 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-1.test_/query_39.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-1.test_/query_39.plan @@ -77,11 +77,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -167,7 +167,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-1.test_/query_40.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-1.test_/query_40.plan index 1a4a7151f21..8c3d2e0c59e 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-1.test_/query_40.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-1.test_/query_40.plan @@ -77,11 +77,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -167,7 +167,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-1.test_/query_83.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-1.test_/query_83.plan index baa4f8d124b..f03e20cfbf4 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-1.test_/query_83.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-1.test_/query_83.plan @@ -76,11 +76,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -165,7 +165,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-1.test_/query_84.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-1.test_/query_84.plan index 3838ffaefff..3c9342867e5 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-1.test_/query_84.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-1.test_/query_84.plan @@ -76,11 +76,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -165,7 +165,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-10.test_/query_11.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-10.test_/query_11.plan index 603283e6fe1..5c0865c2f99 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-10.test_/query_11.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-10.test_/query_11.plan @@ -77,11 +77,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -167,7 +167,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-10.test_/query_12.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-10.test_/query_12.plan index 57a417b059b..653f3d743fc 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-10.test_/query_12.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-10.test_/query_12.plan @@ -77,11 +77,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -167,7 +167,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-10.test_/query_23.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-10.test_/query_23.plan index 562bf0e6f57..7e9bd7c7484 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-10.test_/query_23.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-10.test_/query_23.plan @@ -77,11 +77,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -168,7 +168,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-10.test_/query_24.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-10.test_/query_24.plan index ad514098317..b8396f6f463 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-10.test_/query_24.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-10.test_/query_24.plan @@ -77,11 +77,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -168,7 +168,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-10.test_/query_69.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-10.test_/query_69.plan index 87ec5b0fce0..e00378f65a5 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-10.test_/query_69.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-10.test_/query_69.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -172,7 +172,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-10.test_/query_70.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-10.test_/query_70.plan index 2163b56d9d6..25e3aac00a1 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-10.test_/query_70.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-10.test_/query_70.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -172,7 +172,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-10.test_/query_75.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-10.test_/query_75.plan index 060e538f737..f4d682d0be6 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-10.test_/query_75.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-10.test_/query_75.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -170,7 +170,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-10.test_/query_76.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-10.test_/query_76.plan index 7bdcb7b9140..1fee07be69b 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-10.test_/query_76.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-10.test_/query_76.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -170,7 +170,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-10.test_/query_93.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-10.test_/query_93.plan index ec562c152ca..9795d77c808 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-10.test_/query_93.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-10.test_/query_93.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -167,7 +167,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-10.test_/query_94.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-10.test_/query_94.plan index fbe247a6d6e..f74b48e71d0 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-10.test_/query_94.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-10.test_/query_94.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -167,7 +167,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-10.test_/query_97.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-10.test_/query_97.plan index d5a00b47945..6daf261c8a4 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-10.test_/query_97.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-10.test_/query_97.plan @@ -77,11 +77,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -165,7 +165,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-10.test_/query_98.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-10.test_/query_98.plan index ef82408a68b..fb97bed478a 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-10.test_/query_98.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-10.test_/query_98.plan @@ -77,11 +77,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -165,7 +165,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-11.test_/query_105.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-11.test_/query_105.plan index 59108f07ba7..93caec9b3a9 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-11.test_/query_105.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-11.test_/query_105.plan @@ -80,11 +80,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -166,7 +166,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-11.test_/query_106.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-11.test_/query_106.plan index 59108f07ba7..93caec9b3a9 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-11.test_/query_106.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-11.test_/query_106.plan @@ -80,11 +80,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -166,7 +166,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-11.test_/query_19.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-11.test_/query_19.plan index 147923f3bcb..bbd236e72a5 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-11.test_/query_19.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-11.test_/query_19.plan @@ -76,11 +76,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -162,7 +162,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-11.test_/query_20.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-11.test_/query_20.plan index 147923f3bcb..bbd236e72a5 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-11.test_/query_20.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-11.test_/query_20.plan @@ -76,11 +76,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -162,7 +162,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-11.test_/query_31.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-11.test_/query_31.plan index 9c9d7ac8db0..d394e867276 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-11.test_/query_31.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-11.test_/query_31.plan @@ -80,11 +80,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -164,7 +164,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-11.test_/query_32.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-11.test_/query_32.plan index 9c9d7ac8db0..d394e867276 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-11.test_/query_32.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-11.test_/query_32.plan @@ -80,11 +80,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -164,7 +164,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-11.test_/query_43.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-11.test_/query_43.plan index 3015ae46147..36c86fa762b 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-11.test_/query_43.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-11.test_/query_43.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -168,7 +168,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-11.test_/query_44.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-11.test_/query_44.plan index f5c23baa13b..e701ae5c7ea 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-11.test_/query_44.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-11.test_/query_44.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -168,7 +168,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-11.test_/query_45.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-11.test_/query_45.plan index 1b95b8acc61..056d82c0fc8 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-11.test_/query_45.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-11.test_/query_45.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -168,7 +168,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-11.test_/query_46.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-11.test_/query_46.plan index 1b95b8acc61..056d82c0fc8 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-11.test_/query_46.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-11.test_/query_46.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -168,7 +168,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-11.test_/query_47.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-11.test_/query_47.plan index 117d79b655f..55d6870f6e8 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-11.test_/query_47.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-11.test_/query_47.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -168,7 +168,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-11.test_/query_48.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-11.test_/query_48.plan index fba28b08c9e..8c24f8e4aaf 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-11.test_/query_48.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-11.test_/query_48.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -168,7 +168,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-11.test_/query_5.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-11.test_/query_5.plan index b11470730e3..3da9b040ff6 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-11.test_/query_5.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-11.test_/query_5.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -168,7 +168,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-11.test_/query_6.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-11.test_/query_6.plan index 1722d37d8c2..884f9426035 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-11.test_/query_6.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-11.test_/query_6.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -168,7 +168,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_105.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_105.plan index 5d26c47a80f..796030e9bc7 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_105.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_105.plan @@ -77,11 +77,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -168,7 +168,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_106.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_106.plan index fa89181c06b..e743960f637 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_106.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_106.plan @@ -77,11 +77,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -168,7 +168,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_107.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_107.plan index 4a9a7484d3d..49b600ffbca 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_107.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_107.plan @@ -77,11 +77,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -166,7 +166,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_108.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_108.plan index 1f2453f1287..987ea728122 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_108.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_108.plan @@ -77,11 +77,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -166,7 +166,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_109.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_109.plan index aba46306829..d3d53962c5a 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_109.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_109.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -169,7 +169,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_110.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_110.plan index e9a1eb17acd..8a56de464f8 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_110.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_110.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -169,7 +169,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_111.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_111.plan index 8ce6900acb5..6d5a035ef5e 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_111.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_111.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -169,7 +169,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_112.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_112.plan index 039c8ec8cf4..8a5d304c063 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_112.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_112.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -169,7 +169,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_139.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_139.plan index bb83ed376b8..c347e2046dd 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_139.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_139.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -172,7 +172,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_140.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_140.plan index dec9d18c1ad..c9dfc16f6ed 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_140.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_140.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -172,7 +172,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_37.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_37.plan index cd8407ea19b..dfc202756ef 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_37.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_37.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -169,7 +169,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_38.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_38.plan index c7041a8ee62..3621dbfc351 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_38.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_38.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -169,7 +169,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_45.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_45.plan index e9992e035c4..1505c0dc561 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_45.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_45.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -167,7 +167,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_46.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_46.plan index e9992e035c4..1505c0dc561 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_46.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_46.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -167,7 +167,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_47.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_47.plan index 105a5033a84..6b0cb68c348 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_47.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_47.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -167,7 +167,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_48.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_48.plan index 897f0f78d41..7f27c3c357e 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_48.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_48.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -167,7 +167,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_73.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_73.plan index 335280d69b5..332f827e1cd 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_73.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_73.plan @@ -77,11 +77,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -167,7 +167,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_74.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_74.plan index e62e62155a9..e532a9400a4 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_74.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_74.plan @@ -77,11 +77,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -167,7 +167,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_77.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_77.plan index b4cab23535a..bb0dd85f2ce 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_77.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_77.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -170,7 +170,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_78.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_78.plan index b4cab23535a..bb0dd85f2ce 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_78.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_78.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -170,7 +170,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_79.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_79.plan index 590e8fea59d..fc335226ea1 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_79.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_79.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -170,7 +170,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_80.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_80.plan index fa55d74460d..f20e10d134b 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_80.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_80.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -170,7 +170,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_81.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_81.plan index c8732a23b33..d4a2b5a1e7d 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_81.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_81.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -170,7 +170,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_82.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_82.plan index 2e0d3750fab..756d5a9c0d7 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_82.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_82.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -170,7 +170,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_85.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_85.plan index f9d90aebcfb..f7ac18db034 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_85.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_85.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -169,7 +169,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_86.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_86.plan index 118483fb36f..b5bd3e1107f 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_86.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-12.test_/query_86.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -169,7 +169,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-13.test_/query_10.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-13.test_/query_10.plan index 3ad5ba12bd6..319b11fa000 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-13.test_/query_10.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-13.test_/query_10.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -170,7 +170,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-13.test_/query_11.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-13.test_/query_11.plan index a4a71cbe849..cdb9e3e1c8c 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-13.test_/query_11.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-13.test_/query_11.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -170,7 +170,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-13.test_/query_12.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-13.test_/query_12.plan index b2329569e93..5d5a1296af6 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-13.test_/query_12.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-13.test_/query_12.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -170,7 +170,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-13.test_/query_13.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-13.test_/query_13.plan index 2bac0c6b182..0e0e8dc1689 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-13.test_/query_13.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-13.test_/query_13.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -170,7 +170,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-13.test_/query_14.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-13.test_/query_14.plan index fd3b5ba6d8b..9687ba86554 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-13.test_/query_14.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-13.test_/query_14.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -170,7 +170,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-13.test_/query_15.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-13.test_/query_15.plan index 0d02070753c..a130cdde50d 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-13.test_/query_15.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-13.test_/query_15.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -170,7 +170,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-13.test_/query_16.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-13.test_/query_16.plan index af39b8af19c..dcfae63e771 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-13.test_/query_16.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-13.test_/query_16.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -170,7 +170,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-13.test_/query_17.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-13.test_/query_17.plan index 0e702a9aebf..57486b50ea4 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-13.test_/query_17.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-13.test_/query_17.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -170,7 +170,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-13.test_/query_24.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-13.test_/query_24.plan index 037159025df..d9d2d22b47b 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-13.test_/query_24.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-13.test_/query_24.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -167,7 +167,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-13.test_/query_25.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-13.test_/query_25.plan index 47a4795f5d2..7d26183474d 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-13.test_/query_25.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-13.test_/query_25.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -167,7 +167,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-13.test_/query_26.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-13.test_/query_26.plan index 2c4e24370be..ee6e9a493f2 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-13.test_/query_26.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-13.test_/query_26.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -167,7 +167,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-13.test_/query_27.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-13.test_/query_27.plan index 2c4e24370be..ee6e9a493f2 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-13.test_/query_27.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-13.test_/query_27.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -167,7 +167,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-13.test_/query_34.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-13.test_/query_34.plan index b64a94fbdcf..26f347234a0 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-13.test_/query_34.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-13.test_/query_34.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -172,7 +172,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-13.test_/query_35.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-13.test_/query_35.plan index b7debde9432..a2764df8508 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-13.test_/query_35.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-13.test_/query_35.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -172,7 +172,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-13.test_/query_36.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-13.test_/query_36.plan index cdc0fcbecb6..732beb3c60c 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-13.test_/query_36.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-13.test_/query_36.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -172,7 +172,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-13.test_/query_37.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-13.test_/query_37.plan index 2fc18628119..1d1b5b98d7e 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-13.test_/query_37.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-13.test_/query_37.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -172,7 +172,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-13.test_/query_38.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-13.test_/query_38.plan index 939d6eef05d..d40a9e2a3ab 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-13.test_/query_38.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-13.test_/query_38.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -172,7 +172,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-13.test_/query_39.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-13.test_/query_39.plan index 67c611336b3..d0e4abb5448 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-13.test_/query_39.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-13.test_/query_39.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -172,7 +172,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-13.test_/query_62.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-13.test_/query_62.plan index 119edacc342..7106e01a865 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-13.test_/query_62.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-13.test_/query_62.plan @@ -75,11 +75,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -158,7 +158,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-13.test_/query_63.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-13.test_/query_63.plan index 119edacc342..7106e01a865 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-13.test_/query_63.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-13.test_/query_63.plan @@ -75,11 +75,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -158,7 +158,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-13.test_/query_8.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-13.test_/query_8.plan index c7fe75a0a38..3bfbd911cc3 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-13.test_/query_8.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-13.test_/query_8.plan @@ -77,11 +77,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -168,7 +168,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-13.test_/query_9.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-13.test_/query_9.plan index 41faf1911bb..d98953f420d 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-13.test_/query_9.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-13.test_/query_9.plan @@ -77,11 +77,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -168,7 +168,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-14.test_/query_22.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-14.test_/query_22.plan index 0473d8d6e3e..2f680f1696b 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-14.test_/query_22.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-14.test_/query_22.plan @@ -77,11 +77,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -166,7 +166,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-14.test_/query_23.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-14.test_/query_23.plan index 248c499d171..af3973753da 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-14.test_/query_23.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-14.test_/query_23.plan @@ -77,11 +77,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -166,7 +166,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-14.test_/query_28.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-14.test_/query_28.plan index 10499e2bbd0..a9dfaf9ca17 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-14.test_/query_28.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-14.test_/query_28.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -172,7 +172,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-14.test_/query_29.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-14.test_/query_29.plan index 0ce16b64f61..e0497ea8627 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-14.test_/query_29.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-14.test_/query_29.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -172,7 +172,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-14.test_/query_30.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-14.test_/query_30.plan index b81b4f0fc6c..0f9f0713942 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-14.test_/query_30.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-14.test_/query_30.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -172,7 +172,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-14.test_/query_31.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-14.test_/query_31.plan index 833f1158422..06012df5d50 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-14.test_/query_31.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-14.test_/query_31.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -172,7 +172,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-14.test_/query_60.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-14.test_/query_60.plan index 6b24e42e93b..6e5ec4e550b 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-14.test_/query_60.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-14.test_/query_60.plan @@ -75,11 +75,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -163,7 +163,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-14.test_/query_61.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-14.test_/query_61.plan index ad1e72699a7..fb8dbf762ad 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-14.test_/query_61.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-14.test_/query_61.plan @@ -75,11 +75,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -163,7 +163,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-14.test_/query_76.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-14.test_/query_76.plan index 80edee89dc2..8c2758c2c2a 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-14.test_/query_76.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-14.test_/query_76.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -170,7 +170,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-14.test_/query_77.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-14.test_/query_77.plan index c8510fd5618..4b1ba9c3878 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-14.test_/query_77.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-14.test_/query_77.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -170,7 +170,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-14.test_/query_78.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-14.test_/query_78.plan index e26acac81b1..56539a504bc 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-14.test_/query_78.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-14.test_/query_78.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -170,7 +170,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-14.test_/query_79.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-14.test_/query_79.plan index d12c2b83c01..9064b3618be 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-14.test_/query_79.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-14.test_/query_79.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -170,7 +170,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-14.test_/query_80.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-14.test_/query_80.plan index 0bd17922aa6..aae5d51d823 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-14.test_/query_80.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-14.test_/query_80.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -170,7 +170,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-14.test_/query_81.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-14.test_/query_81.plan index 9dc8334e59d..ad333c61c40 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-14.test_/query_81.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-14.test_/query_81.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -170,7 +170,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-14.test_/query_88.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-14.test_/query_88.plan index 779efb4a61a..79a462c08e6 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-14.test_/query_88.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-14.test_/query_88.plan @@ -77,11 +77,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -165,7 +165,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-14.test_/query_89.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-14.test_/query_89.plan index cf94eba8658..7d48112ed10 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-14.test_/query_89.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-14.test_/query_89.plan @@ -77,11 +77,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -165,7 +165,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-15.test_/query_11.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-15.test_/query_11.plan index 3eccdfea09b..9be3930ac52 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-15.test_/query_11.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-15.test_/query_11.plan @@ -77,11 +77,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -165,7 +165,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-15.test_/query_12.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-15.test_/query_12.plan index bd1ed9c969a..8d87476aec8 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-15.test_/query_12.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-15.test_/query_12.plan @@ -77,11 +77,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -165,7 +165,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-15.test_/query_17.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-15.test_/query_17.plan index 286de983891..f6a401b5b88 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-15.test_/query_17.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-15.test_/query_17.plan @@ -80,11 +80,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -164,7 +164,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-15.test_/query_18.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-15.test_/query_18.plan index 286de983891..f6a401b5b88 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-15.test_/query_18.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-15.test_/query_18.plan @@ -80,11 +80,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -164,7 +164,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-15.test_/query_19.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-15.test_/query_19.plan index 90583455921..db49af576de 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-15.test_/query_19.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-15.test_/query_19.plan @@ -80,11 +80,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -164,7 +164,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-15.test_/query_20.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-15.test_/query_20.plan index 90583455921..db49af576de 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-15.test_/query_20.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-15.test_/query_20.plan @@ -80,11 +80,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -164,7 +164,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-15.test_/query_3.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-15.test_/query_3.plan index bbe35b12b5c..16fa75b81cd 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-15.test_/query_3.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-15.test_/query_3.plan @@ -75,11 +75,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -159,7 +159,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-15.test_/query_4.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-15.test_/query_4.plan index e144d2ea07a..0064e330c9e 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-15.test_/query_4.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-15.test_/query_4.plan @@ -75,11 +75,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -159,7 +159,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_100.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_100.plan index 7abe1216a53..9db6bf95aeb 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_100.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_100.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -172,7 +172,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_101.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_101.plan index 70da9e16085..c0f963acfa7 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_101.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_101.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -172,7 +172,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_12.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_12.plan index 395120009ec..76600d52fa5 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_12.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_12.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -167,7 +167,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_13.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_13.plan index 9a58958af55..21c1beb2a0c 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_13.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_13.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -167,7 +167,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_14.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_14.plan index 39ec064fc73..2ee30f2c961 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_14.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_14.plan @@ -80,11 +80,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -168,7 +168,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_140.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_140.plan index b8ccdf9ce1c..b5a88222f30 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_140.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_140.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -172,7 +172,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_141.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_141.plan index 0c259e8d7cb..67e4f1dc7d3 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_141.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_141.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -172,7 +172,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_15.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_15.plan index 75510903393..7f8391cb67c 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_15.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_15.plan @@ -80,11 +80,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -168,7 +168,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_16.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_16.plan index cece39d0324..003e72d5aa7 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_16.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_16.plan @@ -80,11 +80,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -168,7 +168,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_17.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_17.plan index 5ed4756caaf..a91b8637993 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_17.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_17.plan @@ -80,11 +80,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -168,7 +168,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_22.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_22.plan index 55483403ecf..a13a18f6b7e 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_22.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_22.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -170,7 +170,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_23.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_23.plan index 04cd6e9e355..b540d1c3f10 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_23.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_23.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -170,7 +170,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_24.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_24.plan index a0c2b19b9fd..09976843f0a 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_24.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_24.plan @@ -77,11 +77,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -166,7 +166,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_25.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_25.plan index 272bfc9964c..daeb4b1f848 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_25.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_25.plan @@ -77,11 +77,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -166,7 +166,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_40.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_40.plan index a737bf5dbf8..99448faba82 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_40.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_40.plan @@ -77,11 +77,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -168,7 +168,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_41.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_41.plan index ea65c3d5633..0b9bf4d32de 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_41.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_41.plan @@ -77,11 +77,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -168,7 +168,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_44.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_44.plan index 84847555d80..bd8a511c406 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_44.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_44.plan @@ -79,11 +79,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -167,7 +167,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_45.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_45.plan index e28fafe7af0..2dc6f6508a9 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_45.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_45.plan @@ -79,11 +79,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -167,7 +167,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_54.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_54.plan index a8669160bfe..6a936f9ec58 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_54.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_54.plan @@ -76,11 +76,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -164,7 +164,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_55.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_55.plan index d029086e95c..62c66429926 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_55.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_55.plan @@ -76,11 +76,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -164,7 +164,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_64.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_64.plan index ad5559dbb70..73ab94162cf 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_64.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_64.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -168,7 +168,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_65.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_65.plan index df9163fbbc2..420317d652e 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_65.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_65.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -168,7 +168,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_66.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_66.plan index 49233442d7d..e09c690a889 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_66.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_66.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -168,7 +168,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_67.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_67.plan index e6f0d951833..aa6f825e47f 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_67.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_67.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -168,7 +168,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_72.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_72.plan index 6c2cc8b8ba4..4a41c639c80 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_72.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_72.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -172,7 +172,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_73.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_73.plan index 229091e3ba8..cd7bba7ad1e 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_73.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_73.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -172,7 +172,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_94.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_94.plan index 980f9e5bd77..7a6ea738b3f 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_94.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_94.plan @@ -76,11 +76,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -161,7 +161,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_95.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_95.plan index 3a0f883e4d3..780509d4a6d 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_95.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_95.plan @@ -76,11 +76,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -161,7 +161,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_98.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_98.plan index 6c2cc8b8ba4..4a41c639c80 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_98.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_98.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -172,7 +172,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_99.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_99.plan index eb36547a852..6bba643b2ef 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_99.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-2.test_/query_99.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -172,7 +172,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-3.test_/query_1.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-3.test_/query_1.plan index ba5d62355bf..2fc46f68f45 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-3.test_/query_1.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-3.test_/query_1.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -171,7 +171,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-3.test_/query_100.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-3.test_/query_100.plan index 9a4c82014ea..459414a224e 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-3.test_/query_100.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-3.test_/query_100.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -172,7 +172,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-3.test_/query_101.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-3.test_/query_101.plan index 994183c2b51..9ead339191d 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-3.test_/query_101.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-3.test_/query_101.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -172,7 +172,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-3.test_/query_102.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-3.test_/query_102.plan index ec99e41b6d3..b04cc2f0bf4 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-3.test_/query_102.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-3.test_/query_102.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -172,7 +172,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-3.test_/query_107.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-3.test_/query_107.plan index b6ea60d6782..448b17615f2 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-3.test_/query_107.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-3.test_/query_107.plan @@ -80,11 +80,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -168,7 +168,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-3.test_/query_108.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-3.test_/query_108.plan index 802a94ae531..3e59fe37efd 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-3.test_/query_108.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-3.test_/query_108.plan @@ -80,11 +80,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -168,7 +168,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-3.test_/query_119.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-3.test_/query_119.plan index 85bc4e46f1f..e255f917e99 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-3.test_/query_119.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-3.test_/query_119.plan @@ -76,11 +76,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -162,7 +162,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-3.test_/query_120.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-3.test_/query_120.plan index b1c05b5b0b3..2e8f30045f6 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-3.test_/query_120.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-3.test_/query_120.plan @@ -76,11 +76,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -162,7 +162,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-3.test_/query_2.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-3.test_/query_2.plan index 68e14448691..b1fe09751c0 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-3.test_/query_2.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-3.test_/query_2.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -171,7 +171,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-3.test_/query_29.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-3.test_/query_29.plan index 8b6b7b0eb4e..9a64b81dc22 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-3.test_/query_29.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-3.test_/query_29.plan @@ -77,11 +77,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -167,7 +167,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-3.test_/query_3.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-3.test_/query_3.plan index ba03e076d35..368d1bf489a 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-3.test_/query_3.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-3.test_/query_3.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -171,7 +171,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-3.test_/query_30.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-3.test_/query_30.plan index 9b79f7197e9..42c81436450 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-3.test_/query_30.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-3.test_/query_30.plan @@ -77,11 +77,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -167,7 +167,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-3.test_/query_4.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-3.test_/query_4.plan index 9fe30335818..1e83dcc43ea 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-3.test_/query_4.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-3.test_/query_4.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -171,7 +171,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-3.test_/query_43.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-3.test_/query_43.plan index 8b6b7b0eb4e..9a64b81dc22 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-3.test_/query_43.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-3.test_/query_43.plan @@ -77,11 +77,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -167,7 +167,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-3.test_/query_44.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-3.test_/query_44.plan index a97ccc5cd49..67a49f3f654 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-3.test_/query_44.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-3.test_/query_44.plan @@ -77,11 +77,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -167,7 +167,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-3.test_/query_45.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-3.test_/query_45.plan index 8b6b7b0eb4e..9a64b81dc22 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-3.test_/query_45.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-3.test_/query_45.plan @@ -77,11 +77,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -167,7 +167,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-3.test_/query_46.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-3.test_/query_46.plan index 7fc47ddf5d7..c5f3710d9f0 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-3.test_/query_46.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-3.test_/query_46.plan @@ -77,11 +77,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -167,7 +167,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-3.test_/query_97.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-3.test_/query_97.plan index 29e3d46c34e..3b93f9c765e 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-3.test_/query_97.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-3.test_/query_97.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -172,7 +172,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-3.test_/query_98.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-3.test_/query_98.plan index 2184ee45611..e822a1ee0b6 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-3.test_/query_98.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-3.test_/query_98.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -172,7 +172,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-3.test_/query_99.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-3.test_/query_99.plan index a7eee302d52..3aa8a343306 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-3.test_/query_99.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-3.test_/query_99.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -172,7 +172,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-4.test_/query_16.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-4.test_/query_16.plan index a6e5f7c44c1..402227d28e8 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-4.test_/query_16.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-4.test_/query_16.plan @@ -77,11 +77,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -168,7 +168,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-4.test_/query_17.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-4.test_/query_17.plan index 8420d3c11a7..4ff5245b87b 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-4.test_/query_17.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-4.test_/query_17.plan @@ -77,11 +77,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -168,7 +168,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-4.test_/query_28.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-4.test_/query_28.plan index db986d5f642..45cb50a9a09 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-4.test_/query_28.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-4.test_/query_28.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -169,7 +169,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-4.test_/query_29.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-4.test_/query_29.plan index 36947a14756..3106ebebab8 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-4.test_/query_29.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-4.test_/query_29.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -169,7 +169,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-4.test_/query_40.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-4.test_/query_40.plan index 17a6c669932..bde5ec4a905 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-4.test_/query_40.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-4.test_/query_40.plan @@ -80,11 +80,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -165,7 +165,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-4.test_/query_41.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-4.test_/query_41.plan index 9ceded721d4..f7f5ca4fc91 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-4.test_/query_41.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-4.test_/query_41.plan @@ -80,11 +80,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -165,7 +165,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-4.test_/query_42.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-4.test_/query_42.plan index a91a81caaa2..da34e502c5d 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-4.test_/query_42.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-4.test_/query_42.plan @@ -80,11 +80,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -165,7 +165,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-4.test_/query_43.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-4.test_/query_43.plan index a91a81caaa2..da34e502c5d 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-4.test_/query_43.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-4.test_/query_43.plan @@ -80,11 +80,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -165,7 +165,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-4.test_/query_68.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-4.test_/query_68.plan index 4136e5f6ee7..90fee29cfe6 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-4.test_/query_68.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-4.test_/query_68.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -170,7 +170,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-4.test_/query_69.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-4.test_/query_69.plan index a67ec129be5..5ffa8fc28ae 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-4.test_/query_69.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-4.test_/query_69.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -170,7 +170,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-4.test_/query_70.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-4.test_/query_70.plan index f148b1ccdaa..75b42d0ae06 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-4.test_/query_70.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-4.test_/query_70.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -170,7 +170,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-4.test_/query_71.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-4.test_/query_71.plan index 8b2c964db0b..4168f5b8ca9 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-4.test_/query_71.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-4.test_/query_71.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -170,7 +170,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-4.test_/query_76.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-4.test_/query_76.plan index ee376fe2fa2..e3cb8567017 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-4.test_/query_76.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-4.test_/query_76.plan @@ -76,11 +76,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -161,7 +161,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-4.test_/query_77.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-4.test_/query_77.plan index ee376fe2fa2..e3cb8567017 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-4.test_/query_77.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-4.test_/query_77.plan @@ -76,11 +76,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -161,7 +161,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-5.test_/query_13.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-5.test_/query_13.plan index d19611ab5f5..31af69d1690 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-5.test_/query_13.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-5.test_/query_13.plan @@ -80,11 +80,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -165,7 +165,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-5.test_/query_14.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-5.test_/query_14.plan index d19611ab5f5..31af69d1690 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-5.test_/query_14.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-5.test_/query_14.plan @@ -80,11 +80,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -165,7 +165,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-5.test_/query_21.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-5.test_/query_21.plan index b949932625d..12b8f6fc082 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-5.test_/query_21.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-5.test_/query_21.plan @@ -79,11 +79,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -162,7 +162,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-5.test_/query_22.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-5.test_/query_22.plan index b949932625d..12b8f6fc082 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-5.test_/query_22.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-5.test_/query_22.plan @@ -79,11 +79,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -162,7 +162,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-5.test_/query_27.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-5.test_/query_27.plan index f3b97c092bb..db1e4b00ed3 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-5.test_/query_27.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-5.test_/query_27.plan @@ -77,11 +77,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -167,7 +167,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-5.test_/query_28.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-5.test_/query_28.plan index f5846132f06..be51b495e08 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-5.test_/query_28.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-5.test_/query_28.plan @@ -77,11 +77,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -167,7 +167,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-5.test_/query_55.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-5.test_/query_55.plan index 49342e479e9..4f5dc0a28df 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-5.test_/query_55.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-5.test_/query_55.plan @@ -75,11 +75,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -158,7 +158,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-5.test_/query_56.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-5.test_/query_56.plan index 49342e479e9..4f5dc0a28df 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-5.test_/query_56.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-5.test_/query_56.plan @@ -75,11 +75,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -158,7 +158,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-5.test_/query_75.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-5.test_/query_75.plan index 8275941a0f2..e3e0961fb93 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-5.test_/query_75.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-5.test_/query_75.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -171,7 +171,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-5.test_/query_76.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-5.test_/query_76.plan index 64232180d9a..d28b4c7b747 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-5.test_/query_76.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-5.test_/query_76.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -171,7 +171,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-6.test_/query_103.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-6.test_/query_103.plan index a6862edd2da..52431ed24e0 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-6.test_/query_103.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-6.test_/query_103.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -169,7 +169,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-6.test_/query_104.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-6.test_/query_104.plan index f00aa484e41..f57f039b7a1 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-6.test_/query_104.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-6.test_/query_104.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -169,7 +169,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-6.test_/query_107.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-6.test_/query_107.plan index 118812bd80e..fd650fa332e 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-6.test_/query_107.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-6.test_/query_107.plan @@ -76,11 +76,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -164,7 +164,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-6.test_/query_108.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-6.test_/query_108.plan index 5cb787776f0..5296013565e 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-6.test_/query_108.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-6.test_/query_108.plan @@ -76,11 +76,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -164,7 +164,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-6.test_/query_131.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-6.test_/query_131.plan index c5254febfb1..14feb0ae0a5 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-6.test_/query_131.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-6.test_/query_131.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -172,7 +172,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-6.test_/query_132.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-6.test_/query_132.plan index c20e80122b0..53b3ab79318 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-6.test_/query_132.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-6.test_/query_132.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -172,7 +172,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-6.test_/query_133.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-6.test_/query_133.plan index d10d34eae60..bdd70377e82 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-6.test_/query_133.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-6.test_/query_133.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -172,7 +172,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-6.test_/query_134.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-6.test_/query_134.plan index 8f5b4cebfd3..d3e52292bf6 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-6.test_/query_134.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-6.test_/query_134.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -172,7 +172,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-6.test_/query_33.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-6.test_/query_33.plan index 18d320ca570..9f092788d8b 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-6.test_/query_33.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-6.test_/query_33.plan @@ -80,11 +80,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -164,7 +164,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-6.test_/query_34.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-6.test_/query_34.plan index 18d320ca570..9f092788d8b 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-6.test_/query_34.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-6.test_/query_34.plan @@ -80,11 +80,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -164,7 +164,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-6.test_/query_35.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-6.test_/query_35.plan index 7bec31904b5..b9c4af74894 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-6.test_/query_35.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-6.test_/query_35.plan @@ -80,11 +80,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -164,7 +164,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-6.test_/query_36.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-6.test_/query_36.plan index 7bec31904b5..b9c4af74894 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-6.test_/query_36.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-6.test_/query_36.plan @@ -80,11 +80,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -164,7 +164,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-6.test_/query_49.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-6.test_/query_49.plan index 6c896c47d7e..3ec7f8cfacf 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-6.test_/query_49.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-6.test_/query_49.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -171,7 +171,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-6.test_/query_50.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-6.test_/query_50.plan index 73ae5a49970..5579164ec0e 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-6.test_/query_50.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-6.test_/query_50.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -171,7 +171,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-7.test_/query_1.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-7.test_/query_1.plan index 1e6f9e31caf..32ef0bcd435 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-7.test_/query_1.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-7.test_/query_1.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -171,7 +171,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-7.test_/query_109.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-7.test_/query_109.plan index a75673f6e50..9915a95188b 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-7.test_/query_109.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-7.test_/query_109.plan @@ -77,11 +77,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -166,7 +166,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-7.test_/query_110.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-7.test_/query_110.plan index 55f5d4729c9..8ec44a09c73 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-7.test_/query_110.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-7.test_/query_110.plan @@ -77,11 +77,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -166,7 +166,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-7.test_/query_113.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-7.test_/query_113.plan index 8dda7feeca6..444c11c062f 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-7.test_/query_113.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-7.test_/query_113.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -172,7 +172,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-7.test_/query_114.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-7.test_/query_114.plan index 5c0c91b9fcb..ffd0e42d56b 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-7.test_/query_114.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-7.test_/query_114.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -172,7 +172,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-7.test_/query_119.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-7.test_/query_119.plan index 576263c7eaf..12d008f03a2 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-7.test_/query_119.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-7.test_/query_119.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -171,7 +171,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-7.test_/query_120.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-7.test_/query_120.plan index fb6e293849a..43e851e3765 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-7.test_/query_120.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-7.test_/query_120.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -171,7 +171,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-7.test_/query_121.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-7.test_/query_121.plan index df0cb2dc4e1..3eb7257dce7 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-7.test_/query_121.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-7.test_/query_121.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -171,7 +171,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-7.test_/query_122.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-7.test_/query_122.plan index 929af80a521..b3f21969ce6 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-7.test_/query_122.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-7.test_/query_122.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -171,7 +171,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-7.test_/query_123.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-7.test_/query_123.plan index 01ff78ac02f..6460e1f6f94 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-7.test_/query_123.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-7.test_/query_123.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -171,7 +171,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-7.test_/query_2.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-7.test_/query_2.plan index c58f6cd5a3f..057f2749349 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-7.test_/query_2.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-7.test_/query_2.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -171,7 +171,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_1.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_1.plan index a2a0d9064a9..761fae362b4 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_1.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_1.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -171,7 +171,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_108.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_108.plan index 38e369e79d1..c4babfe19a1 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_108.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_108.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -171,7 +171,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_109.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_109.plan index bcf7873440a..dae53baeccb 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_109.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_109.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -171,7 +171,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_110.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_110.plan index d325d8f2773..e577fd1504b 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_110.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_110.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -171,7 +171,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_111.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_111.plan index 7b410554fa2..5124954920f 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_111.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_111.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -171,7 +171,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_114.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_114.plan index 14d9f54e552..80108a5ab00 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_114.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_114.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -172,7 +172,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_115.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_115.plan index f8393edb6a2..7e88869b799 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_115.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_115.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -172,7 +172,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_116.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_116.plan index 788bafcdb41..2b974618693 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_116.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_116.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -172,7 +172,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_117.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_117.plan index b759072c3f0..9a3354a69a1 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_117.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_117.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -172,7 +172,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_120.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_120.plan index 7eafa5e0be8..c06604b53bc 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_120.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_120.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -167,7 +167,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_121.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_121.plan index 8631f6d805a..9ea975b9dd5 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_121.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_121.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -167,7 +167,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_2.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_2.plan index 2e2d7604ca5..19eb014a58a 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_2.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_2.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -171,7 +171,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_3.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_3.plan index 706f28f9ad9..5c12dfcec79 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_3.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_3.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -171,7 +171,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_58.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_58.plan index 829ec75841b..4858d1d4470 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_58.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_58.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -172,7 +172,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_59.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_59.plan index cfd7e41f072..65d40ce3e99 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_59.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_59.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -172,7 +172,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_60.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_60.plan index e7b14cffec4..88a24ba43af 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_60.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_60.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -172,7 +172,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_61.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_61.plan index 69ae6bbf65a..f614c77ed8e 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_61.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_61.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -172,7 +172,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_62.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_62.plan index 5ad9e7608d0..49da7df5878 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_62.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_62.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -172,7 +172,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_63.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_63.plan index 7df2fdb8dca..64d7d7789e9 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_63.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_63.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -172,7 +172,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_80.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_80.plan index 0ecfd038b58..688feaa222c 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_80.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_80.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -169,7 +169,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_81.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_81.plan index 2ae7b88c117..4447808eb6b 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_81.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_81.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -169,7 +169,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_82.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_82.plan index d8f041356e4..07aed5fd8b8 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_82.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_82.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -169,7 +169,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_83.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_83.plan index ca6a90c8581..bdbfec15474 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_83.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_83.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -169,7 +169,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_84.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_84.plan index b876038e39a..f66c419b7e1 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_84.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_84.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -169,7 +169,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_85.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_85.plan index 6abd2d10d53..1b1cbda1b07 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_85.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_85.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -169,7 +169,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_86.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_86.plan index 80333de3f57..4ac39cddb35 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_86.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_86.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -169,7 +169,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_87.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_87.plan index 7baf6e46438..62eac23b441 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_87.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_87.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -169,7 +169,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_92.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_92.plan index 18fa70c2953..4342f621d32 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_92.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_92.plan @@ -75,11 +75,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -160,7 +160,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_93.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_93.plan index 4463bb9d92b..0233b1a9e9b 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_93.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-8.test_/query_93.plan @@ -75,11 +75,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -160,7 +160,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_100.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_100.plan index ce61e21fc89..c84d46c4a9c 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_100.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_100.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -171,7 +171,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_101.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_101.plan index a3356c7cc46..cfade85f091 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_101.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_101.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -171,7 +171,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_102.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_102.plan index 0d6368a42d0..c3dadf60664 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_102.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_102.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -171,7 +171,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_129.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_129.plan index f110b555776..0c688cc8d2d 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_129.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_129.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -170,7 +170,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_130.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_130.plan index 7bc3713e571..23eda865aa9 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_130.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_130.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -170,7 +170,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_133.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_133.plan index f17877c2ab0..3e9865312bc 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_133.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_133.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -171,7 +171,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_134.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_134.plan index 596eefaed51..a245248c9a9 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_134.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_134.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -171,7 +171,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_21.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_21.plan index fb9c0d1e423..e938c687e8b 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_21.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_21.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -172,7 +172,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_22.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_22.plan index 9a77462a4be..1e6f317028a 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_22.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_22.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -172,7 +172,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_23.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_23.plan index 45a49bda9fd..0d2fee0309c 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_23.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_23.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -172,7 +172,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_24.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_24.plan index 963c91c46ba..ab4658e1be6 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_24.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_24.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -172,7 +172,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_27.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_27.plan index d774244e348..aae15900b07 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_27.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_27.plan @@ -77,11 +77,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -168,7 +168,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_28.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_28.plan index 2073e2e2178..2343bbb011d 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_28.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_28.plan @@ -77,11 +77,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -168,7 +168,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_29.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_29.plan index f5cdface265..9443a560b21 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_29.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_29.plan @@ -77,11 +77,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -166,7 +166,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_3.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_3.plan index a9d8a9e9c11..1c12311809e 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_3.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_3.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -168,7 +168,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_30.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_30.plan index 58a46ac8483..804af91904c 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_30.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_30.plan @@ -77,11 +77,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -166,7 +166,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_31.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_31.plan index c23269ed2a9..1883d641e64 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_31.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_31.plan @@ -75,11 +75,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -160,7 +160,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_32.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_32.plan index f3f640cfa25..6fe3ea31c87 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_32.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_32.plan @@ -75,11 +75,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -160,7 +160,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_4.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_4.plan index 355ca0d14b6..8c8ec319d38 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_4.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_4.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -168,7 +168,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_63.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_63.plan index 15619d65570..f324e66c5d9 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_63.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_63.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -169,7 +169,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_64.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_64.plan index f662e5de9cb..fe8cbb1f0b5 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_64.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_64.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -169,7 +169,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_65.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_65.plan index b7087ac3c90..099cec94c67 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_65.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_65.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -169,7 +169,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_66.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_66.plan index 74da3119224..a5f98f20483 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_66.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_66.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -169,7 +169,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_7.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_7.plan index f5cdface265..9443a560b21 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_7.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_7.plan @@ -77,11 +77,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -166,7 +166,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_73.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_73.plan index 60041d1e9ac..61f52646630 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_73.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_73.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -172,7 +172,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_74.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_74.plan index 1354ec0cb67..aaa41f07d8d 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_74.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_74.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -172,7 +172,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_8.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_8.plan index 7bf225e3a5d..69934cd6e7d 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_8.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_8.plan @@ -77,11 +77,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -166,7 +166,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_91.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_91.plan index 79a85387aab..262667bc304 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_91.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_91.plan @@ -76,11 +76,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -162,7 +162,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_92.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_92.plan index 9c69425c118..03eeee250eb 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_92.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_92.plan @@ -76,11 +76,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -162,7 +162,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_93.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_93.plan index 5097b0264c1..78d0b851707 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_93.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_93.plan @@ -80,11 +80,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -169,7 +169,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_94.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_94.plan index e67f0b977d6..4b1c5d1f737 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_94.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_94.plan @@ -80,11 +80,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -169,7 +169,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, diff --git a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_99.plan b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_99.plan index 0c5e09661da..93c2be3f97b 100644 --- a/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_99.plan +++ b/ydb/tests/functional/suite_tests/canondata/test_sql_logic.TestSQLLogic.test_sql_suite_plan-select3-9.test_/query_99.plan @@ -81,11 +81,11 @@ "PlanNodeType": "Connection", "Plans": [ { - "CTE Name": "tx_result_binding_1_0", + "CTE Name": "precompute_0_0", "Node Type": "ConstantExpr", "Operators": [ { - "Iterator": "%kqp%tx_result_binding_0_0", + "Iterator": "precompute_0_0", "Name": "Iterator" } ], @@ -171,7 +171,7 @@ ] } ], - "Subplan Name": "CTE tx_result_binding_0_0" + "Subplan Name": "CTE precompute_0_0" } ] }, |