File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ namespace NKikimr::NSsa {
1919
2020// Bump this version every time incompatible runtime functions are introduced.
2121#ifndef SSA_RUNTIME_VERSION
22- #define SSA_RUNTIME_VERSION 3U
22+ #define SSA_RUNTIME_VERSION 4U
2323#endif
2424
2525// History:
Original file line number Diff line number Diff line change @@ -850,11 +850,7 @@ Y_UNIT_TEST_SUITE(KqpExplain) {
850850 NJson::ReadJsonTree (*streamRes.PlanJson , &plan, true );
851851 UNIT_ASSERT (ValidatePlanNodeIds (plan));
852852
853- #if SSA_RUNTIME_VERSION >= 4U
854853 auto readNode = FindPlanNodeByKv (plan, " Node Type" , " TableFullScan" );
855- #else
856- auto readNode = FindPlanNodeByKv (plan, " Node Type" , " Filter-TableFullScan" );
857- #endif
858854 UNIT_ASSERT (readNode.IsDefined ());
859855
860856 auto & operators = readNode.GetMapSafe ().at (" Operators" ).GetArraySafe ();
@@ -879,7 +875,6 @@ Y_UNIT_TEST_SUITE(KqpExplain) {
879875 auto session = db.CreateSession ().GetValueSync ().GetSession ();
880876
881877 auto res = session.ExplainDataQuery (R"(
882- PRAGMA kikimr.OptEnablePredicateExtract = 'true';
883878 SELECT t.*
884879 FROM
885880 (SELECT * FROM `/Root/test_table_idx_idx`
You can’t perform that action at this time.
0 commit comments