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 190859c commit edea306Copy full SHA for edea306
ydb/core/tx/columnshard/engines/storage/indexes/max/meta.h
@@ -12,6 +12,7 @@ class TIndexMeta: public TIndexByColumns {
12
static inline auto Registrator = TFactory::TRegistrator<TIndexMeta>(GetClassNameStatic());
13
protected:
14
virtual TConclusionStatus DoCheckModificationCompatibility(const IIndexMeta& newMeta) const override {
15
+ Y_UNUSED(newMeta);
16
return TConclusionStatus::Fail("max index not modifiable");
17
}
18
virtual void DoFillIndexCheckers(
@@ -75,4 +76,4 @@ class TIndexMeta: public TIndexByColumns {
75
76
std::shared_ptr<arrow::Scalar> GetMaxScalarVerified(const std::vector<TString>& data, const std::shared_ptr<arrow::DataType>& type) const;
77
};
78
-} // namespace NKikimr::NOlap::NIndexes
79
+} // namespace NKikimr::NOlap::NIndexes
0 commit comments