summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorandrew stalin <[email protected]>2024-11-06 18:36:38 +0700
committerGitHub <[email protected]>2024-11-06 18:36:38 +0700
commit98f759d52ffe511c8ec2d3d6edebb78752f13c3d (patch)
treed97b3749c6c57be79ffa552aa37914753a28158c
parent849baa44fe7225fc36a87e7a72c48380a1f056a7 (diff)
Switch off the ColumnStatistics feature flag for tenant tests (#11297)
-rw-r--r--ydb/core/cms/console/feature_flags_configurator_ut.cpp3
-rw-r--r--ydb/core/testlib/tenant_runtime.cpp1
2 files changed, 3 insertions, 1 deletions
diff --git a/ydb/core/cms/console/feature_flags_configurator_ut.cpp b/ydb/core/cms/console/feature_flags_configurator_ut.cpp
index 9bd68322d59..acde4160b05 100644
--- a/ydb/core/cms/console/feature_flags_configurator_ut.cpp
+++ b/ydb/core/cms/console/feature_flags_configurator_ut.cpp
@@ -131,7 +131,8 @@ Y_UNIT_TEST_SUITE(FeatureFlagsConfiguratorTest) {
WaitForUpdate(runtime); // initial update
CompareFeatureFlags(runtime,
- "EnableExternalHive: false\n");
+ "EnableExternalHive: false\n"
+ "EnableColumnStatistics: false\n");
auto sender = runtime.AllocateEdgeActor();
runtime.Send(new IEventHandle(MakeFeatureFlagsServiceID(), sender, new TEvFeatureFlags::TEvSubscribe()));
diff --git a/ydb/core/testlib/tenant_runtime.cpp b/ydb/core/testlib/tenant_runtime.cpp
index fb28096985a..bad948aaadc 100644
--- a/ydb/core/testlib/tenant_runtime.cpp
+++ b/ydb/core/testlib/tenant_runtime.cpp
@@ -1160,6 +1160,7 @@ TTenantTestRuntime::TTenantTestRuntime(const TTenantTestConfig &config,
, Extension(extension)
{
Extension.MutableFeatureFlags()->SetEnableExternalHive(false);
+ Extension.MutableFeatureFlags()->SetEnableColumnStatistics(false);
Setup(createTenantPools);
}