Skip to content

Commit 0178a2a

Browse files
committed
undo flags mute broken tests
1 parent ea7a537 commit 0178a2a

File tree

4 files changed

+11
-4
lines changed

4 files changed

+11
-4
lines changed

.github/config/muted_ya.txt

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,16 @@ ydb/core/keyvalue/ut_trace TKeyValueTracingTest.WriteSmall
2020
ydb/core/kqp/ut/cost KqpCost.OlapWriteRow
2121
ydb/core/kqp/ut/olap KqpDecimalColumnShard.TestAggregation
2222
ydb/core/kqp/ut/olap KqpDecimalColumnShard.TestFilterCompare
23+
ydb/core/kqp/ut/olap KqpOlapAggregations.BlockGenericWithDistinct
2324
ydb/core/kqp/ut/olap KqpOlapSysView.StatsSysViewBytesColumnActualization
2425
ydb/core/kqp/ut/olap KqpOlapSysView.StatsSysViewBytesDictActualization
2526
ydb/core/kqp/ut/olap KqpOlapSysView.StatsSysViewBytesDictStatActualization
27+
ydb/core/kqp/ut/olap KqpOlapJson.DuplicationCompactionVariants
2628
ydb/core/kqp/ut/olap KqpOlapWrite.TierDraftsGCWithRestart
2729
ydb/core/kqp/ut/olap [*/*] chunk chunk
30+
ydb/core/kqp/ut/join KqpIndexLookupJoin.LeftJoinRightNullFilter+StreamLookup
31+
ydb/core/kqp/ut/join KqpIndexLookupJoin.LeftJoinRightNullFilter-StreamLookup
32+
ydb/core/kqp/ut/join KqpJoinOrder.CanonizedJoinOrderLookupBug
2833
ydb/core/kqp/ut/join KqpJoinOrder.FiveWayJoinStatsOverride-StreamLookupJoin+ColumnStore
2934
ydb/core/kqp/ut/join KqpJoinOrder.TPCDS16-StreamLookupJoin+ColumnStore
3035
ydb/core/kqp/ut/join KqpJoinOrder.TPCDS34-StreamLookupJoin+ColumnStore
@@ -34,7 +39,7 @@ ydb/core/kqp/ut/join KqpJoinOrder.TPCDS94-StreamLookupJoin+ColumnStore
3439
ydb/core/kqp/ut/join KqpJoinOrder.TPCDS95-StreamLookupJoin+ColumnStore
3540
ydb/core/kqp/ut/join KqpJoinOrder.TPCH10-StreamLookupJoin+ColumnStore
3641
ydb/core/kqp/ut/join KqpJoinOrder.TPCH11-StreamLookupJoin+ColumnStore
37-
ydb/core/kqp/ut/join KqpJoinOrder.TPCH21-StreamLookupJoin+ColumnStor
42+
ydb/core/kqp/ut/join KqpJoinOrder.TPCH21-StreamLookupJoin+ColumnStore
3843
ydb/core/kqp/ut/join KqpJoinOrder.TPCH3-StreamLookupJoin+ColumnStore
3944
ydb/core/kqp/ut/join KqpJoinOrder.TPCH5-StreamLookupJoin+ColumnStore
4045
ydb/core/kqp/ut/join KqpJoinOrder.TPCH8-StreamLookupJoin+ColumnStore
@@ -135,6 +140,7 @@ ydb/tests/functional/tpc/large test_tpcds.py.TestTpcdsS1.test_tpcds[36]
135140
ydb/tests/functional/tpc/large test_tpcds.py.TestTpcdsS1.test_tpcds[67]
136141
ydb/tests/functional/tpc/large test_tpcds.py.TestTpcdsS1.test_tpcds[86]
137142
ydb/tests/functional/tpc/large test_tpcds.py.TestTpcdsS1.test_tpcds[9]
143+
ydb/tests/functional/tpc/medium test_tpch.py.TestTpchS1.test_tpch[13]
138144
ydb/tests/olap/scenario sole chunk chunk
139145
ydb/tests/olap/scenario test_alter_compression.py.TestAlterCompression.test[alter_compression]
140146
ydb/tests/olap/scenario test_alter_tiering.py.TestAlterTiering.test[many_tables]

ydb/core/protos/feature_flags.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ message TFeatureFlags {
171171
optional bool EnableImmediateWritingOnBulkUpsert = 146 [default = true];
172172
optional bool EnableInsertWriteIdSpecialColumnCompatibility = 147 [default = false];
173173
optional bool EnableTopicAutopartitioningForCDC = 148 [default = false];
174-
optional bool EnableWritePortionsOnInsert = 149 [default = true];
174+
optional bool EnableWritePortionsOnInsert = 149 [default = false];
175175
optional bool EnableFollowerStats = 150 [default = false];
176176
optional bool EnableTopicAutopartitioningForReplication = 151 [default = false];
177177
optional bool EnableDriveSerialsDiscovery = 152 [default = false];

ydb/core/protos/table_service_config.proto

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -385,7 +385,6 @@ message TTableServiceConfig {
385385

386386
optional bool FilterPushdownOverJoinOptionalSide = 83 [ default = false];
387387

388-
optional bool EnableOlapScalarApply = 86 [default = true];
389-
390388
optional bool EnableSpillingInHashJoinShuffleConnections = 85 [default = false];
389+
391390
};

ydb/core/tx/columnshard/ut_rw/ut_columnshard_read_write.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -342,6 +342,7 @@ bool CheckColumns(const std::shared_ptr<arrow::RecordBatch>& batch, const std::v
342342
void TestWrite(const TestTableDescription& table) {
343343
TTestBasicRuntime runtime;
344344
TTester::Setup(runtime);
345+
runtime.GetAppData().FeatureFlags.SetEnableWritePortionsOnInsert(true);
345346
auto csDefaultControllerGuard = NKikimr::NYDBTest::TControllers::RegisterCSControllerGuard<TDefaultTestsController>();
346347

347348
TActorId sender = runtime.AllocateEdgeActor();
@@ -565,6 +566,7 @@ void TestWriteRead(bool reboots, const TestTableDescription& table = {}, TString
565566
csControllerGuard->SetOverrideBlobSplitSettings(NOlap::NSplitter::TSplitSettings());
566567
TTestBasicRuntime runtime;
567568
TTester::Setup(runtime);
569+
runtime.GetAppData().FeatureFlags.SetEnableWritePortionsOnInsert(true);
568570

569571
runtime.SetLogPriority(NKikimrServices::BLOB_CACHE, NActors::NLog::PRI_DEBUG);
570572
runtime.SetLogPriority(NKikimrServices::TX_COLUMNSHARD, NActors::NLog::PRI_DEBUG);

0 commit comments

Comments
 (0)