We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3553a11 commit e3c9723Copy full SHA for e3c9723
ydb/core/tx/columnshard/normalizer/abstract/abstract.h
@@ -58,6 +58,7 @@ enum class ENormalizerSequentialId: ui32 {
58
CleanGranuleId,
59
EmptyPortionsCleaner,
60
CleanInsertionDedup,
61
+ GCCountersNormalizer,
62
63
MAX
64
};
ydb/core/tx/columnshard/normalizer/tablet/gc_counters.h
@@ -21,7 +21,7 @@ class TGCCountersNormalizer: public TNormalizationController::INormalizerCompone
21
}
22
23
virtual std::optional<ENormalizerSequentialId> DoGetEnumSequentialId() const override {
24
- return {};
+ return ENormalizerSequentialId::GCCountersNormalizer;
25
26
27
virtual TString GetClassName() const override {
0 commit comments