Drop the AGPL license in favor of a source-available license. See the blog post [1] for details. [1] https://www.scylladb.com/2024/12/18/why-were-moving-to-a-source-available-license/
36 lines
996 B
C++
36 lines
996 B
C++
/*
|
|
* Copyright (C) 2024-present ScyllaDB
|
|
*/
|
|
|
|
/*
|
|
* SPDX-License-Identifier: LicenseRef-ScyllaDB-Source-Available-1.0
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "data_dictionary/data_dictionary.hh"
|
|
#include "index/secondary_index_manager.hh"
|
|
#include "schema/schema.hh"
|
|
|
|
namespace replica {
|
|
|
|
class schema_describe_helper : public ::schema_describe_helper {
|
|
data_dictionary::database _db;
|
|
public:
|
|
explicit schema_describe_helper(data_dictionary::database db) : _db(db) { }
|
|
|
|
virtual bool is_global_index(const table_id& base_id, const schema& view_s) const override {
|
|
return _db.find_column_family(base_id).get_index_manager().is_global_index(view_s);
|
|
}
|
|
|
|
virtual bool is_index(const table_id& base_id, const schema& view_s) const override {
|
|
return _db.find_column_family(base_id).get_index_manager().is_index(view_s);
|
|
}
|
|
|
|
virtual schema_ptr find_schema(const table_id& id) const override {
|
|
return _db.find_schema(id);
|
|
}
|
|
};
|
|
|
|
} // namespace data_dictionary
|