/* * Copyright (C) 2024-present ScyllaDB */ /* * SPDX-License-Identifier: LicenseRef-ScyllaDB-Source-Available-1.0 */ #pragma once #include #include struct combined_reader_statistics { // Histogram describing a distribution of clustering keys. The vector // gathers a number of clustering keys merged (value) from a given // number of sstable files (index). The length of the vector is equal // to the number of compacted sstables + 1 std::vector rows_merged_histogram; };