Skip to content

Commit edea306

Browse files
authored
fix unused (#7046)
1 parent 190859c commit edea306

File tree

1 file changed

+2
-1
lines changed
  • ydb/core/tx/columnshard/engines/storage/indexes/max

1 file changed

+2
-1
lines changed

ydb/core/tx/columnshard/engines/storage/indexes/max/meta.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ class TIndexMeta: public TIndexByColumns {
1212
static inline auto Registrator = TFactory::TRegistrator<TIndexMeta>(GetClassNameStatic());
1313
protected:
1414
virtual TConclusionStatus DoCheckModificationCompatibility(const IIndexMeta& newMeta) const override {
15+
Y_UNUSED(newMeta);
1516
return TConclusionStatus::Fail("max index not modifiable");
1617
}
1718
virtual void DoFillIndexCheckers(
@@ -75,4 +76,4 @@ class TIndexMeta: public TIndexByColumns {
7576
std::shared_ptr<arrow::Scalar> GetMaxScalarVerified(const std::vector<TString>& data, const std::shared_ptr<arrow::DataType>& type) const;
7677
};
7778

78-
} // namespace NKikimr::NOlap::NIndexes
79+
} // namespace NKikimr::NOlap::NIndexes

0 commit comments

Comments
 (0)