/* * Copyright (C) 2019-present ScyllaDB * */ /* * SPDX-License-Identifier: LicenseRef-ScyllaDB-Source-Available-1.0 */ #pragma once #include #include "compress.hh" #include "sstables/types.hh" #include "utils/i_filter.hh" namespace sstables { // Immutable components that can be shared among shards. struct shareable_components { sstables::compression compression; utils::filter_ptr filter; sstables::summary summary; sstables::statistics statistics; std::optional scylla_metadata; weak_ptr checksum; std::optional digest; }; } // namespace sstables