aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorchertus <azuikov@ydb.tech>2022-07-15 16:05:06 +0300
committerchertus <azuikov@ydb.tech>2022-07-15 16:05:06 +0300
commitf4cc982cc70e46fd5948bc2c2c681781306392fd (patch)
treece3cf8fb144a8d39634cc80434be743a2988b148
parentc32db3322b4705080f14507646b8734017859d1e (diff)
downloadydb-f4cc982cc70e46fd5948bc2c2c681781306392fd.tar.gz
disable flappy tests
-rw-r--r--ydb/core/tx/columnshard/ut_columnshard_schema.cpp10
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) {