diff options
author | chertus <azuikov@ydb.tech> | 2022-07-15 16:05:06 +0300 |
---|---|---|
committer | chertus <azuikov@ydb.tech> | 2022-07-15 16:05:06 +0300 |
commit | f4cc982cc70e46fd5948bc2c2c681781306392fd (patch) | |
tree | ce3cf8fb144a8d39634cc80434be743a2988b148 | |
parent | c32db3322b4705080f14507646b8734017859d1e (diff) | |
download | ydb-f4cc982cc70e46fd5948bc2c2c681781306392fd.tar.gz |
disable flappy tests
-rw-r--r-- | ydb/core/tx/columnshard/ut_columnshard_schema.cpp | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/ydb/core/tx/columnshard/ut_columnshard_schema.cpp b/ydb/core/tx/columnshard/ut_columnshard_schema.cpp index 2614ae561ca..5757f7909b1 100644 --- a/ydb/core/tx/columnshard/ut_columnshard_schema.cpp +++ b/ydb/core/tx/columnshard/ut_columnshard_schema.cpp @@ -429,6 +429,7 @@ void TestTwoHotTiers(bool reboot) { TestTwoTiers(spec, true, reboot); } +#if 0 void TestHotAndColdTiers(bool reboot) { #if 1 TString bucket = "ydb"; @@ -464,6 +465,7 @@ void TestHotAndColdTiers(bool reboot) { TestTwoTiers(spec, false, reboot); } +#endif void TestDrop(bool reboots) { TTestBasicRuntime runtime; @@ -606,12 +608,14 @@ Y_UNIT_TEST_SUITE(TColumnShardTestSchema) { } Y_UNIT_TEST(ColdTiers) { - TestHotAndColdTiers(false); + // Disabled KIKIMR-14942 + //TestHotAndColdTiers(false); } Y_UNIT_TEST(RebootColdTiers) { - NColumnShard::gAllowLogBatchingDefaultValue = false; - TestHotAndColdTiers(true); + // Disabled KIKIMR-14942 + //NColumnShard::gAllowLogBatchingDefaultValue = false; + //TestHotAndColdTiers(true); } Y_UNIT_TEST(Drop) { |