diff options
author | zverevgeny <zverevgeny@ydb.tech> | 2024-09-15 09:20:22 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-15 09:20:22 +0300 |
commit | e3c9723c3e622156ffd3ceab1014ad91c8d8faf1 (patch) | |
tree | dc97f6591a1026d30eab669ec6a2da32946f1342 | |
parent | 3553a115375b3323eab10630d8e93b8d69f51911 (diff) | |
download | ydb-e3c9723c3e622156ffd3ceab1014ad91c8d8faf1.tar.gz |
Turn on GCCountersNormalizer (#8166)
-rw-r--r-- | ydb/core/tx/columnshard/normalizer/abstract/abstract.h | 1 | ||||
-rw-r--r-- | ydb/core/tx/columnshard/normalizer/tablet/gc_counters.h | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/ydb/core/tx/columnshard/normalizer/abstract/abstract.h b/ydb/core/tx/columnshard/normalizer/abstract/abstract.h index 3a86be18eb..e75099ecd9 100644 --- a/ydb/core/tx/columnshard/normalizer/abstract/abstract.h +++ b/ydb/core/tx/columnshard/normalizer/abstract/abstract.h @@ -58,6 +58,7 @@ enum class ENormalizerSequentialId: ui32 { CleanGranuleId, EmptyPortionsCleaner, CleanInsertionDedup, + GCCountersNormalizer, MAX }; diff --git a/ydb/core/tx/columnshard/normalizer/tablet/gc_counters.h b/ydb/core/tx/columnshard/normalizer/tablet/gc_counters.h index 80b56c0800..8787da5594 100644 --- a/ydb/core/tx/columnshard/normalizer/tablet/gc_counters.h +++ b/ydb/core/tx/columnshard/normalizer/tablet/gc_counters.h @@ -21,7 +21,7 @@ public: } virtual std::optional<ENormalizerSequentialId> DoGetEnumSequentialId() const override { - return {}; + return ENormalizerSequentialId::GCCountersNormalizer; } virtual TString GetClassName() const override { |