From 6770cab985dbf3279bf0a1a5b41afb9191d7ab63 Mon Sep 17 00:00:00 2001 From: zverevgeny Date: Wed, 26 Jun 2024 20:22:59 +0300 Subject: [PATCH] bump SSA_RUNTIME_VERSION (#5906) --- ydb/core/formats/arrow/ssa_runtime_version.h | 2 +- ydb/core/kqp/ut/query/kqp_explain_ut.cpp | 5 ----- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/ydb/core/formats/arrow/ssa_runtime_version.h b/ydb/core/formats/arrow/ssa_runtime_version.h index 7f9b78aa760a..5b6559980b52 100644 --- a/ydb/core/formats/arrow/ssa_runtime_version.h +++ b/ydb/core/formats/arrow/ssa_runtime_version.h @@ -19,7 +19,7 @@ namespace NKikimr::NSsa { // Bump this version every time incompatible runtime functions are introduced. #ifndef SSA_RUNTIME_VERSION -#define SSA_RUNTIME_VERSION 3U +#define SSA_RUNTIME_VERSION 4U #endif // History: diff --git a/ydb/core/kqp/ut/query/kqp_explain_ut.cpp b/ydb/core/kqp/ut/query/kqp_explain_ut.cpp index cd4bd820d53f..ad771f6df6dd 100644 --- a/ydb/core/kqp/ut/query/kqp_explain_ut.cpp +++ b/ydb/core/kqp/ut/query/kqp_explain_ut.cpp @@ -850,11 +850,7 @@ Y_UNIT_TEST_SUITE(KqpExplain) { NJson::ReadJsonTree(*streamRes.PlanJson, &plan, true); UNIT_ASSERT(ValidatePlanNodeIds(plan)); -#if SSA_RUNTIME_VERSION >= 4U auto readNode = FindPlanNodeByKv(plan, "Node Type", "TableFullScan"); -#else - auto readNode = FindPlanNodeByKv(plan, "Node Type", "Filter-TableFullScan"); -#endif UNIT_ASSERT(readNode.IsDefined()); auto& operators = readNode.GetMapSafe().at("Operators").GetArraySafe(); @@ -879,7 +875,6 @@ Y_UNIT_TEST_SUITE(KqpExplain) { auto session = db.CreateSession().GetValueSync().GetSession(); auto res = session.ExplainDataQuery(R"( - PRAGMA kikimr.OptEnablePredicateExtract = 'true'; SELECT t.* FROM (SELECT * FROM `/Root/test_table_idx_idx`