mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 05:32:52 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
20 lines
410 B
C++
20 lines
410 B
C++
#pragma once
|
|
|
|
#include <Storages/MergeTree/MergeSelector.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
/// Select all parts within partition (having at least two parts) with minimum total size.
|
|
class AllMergeSelector : public IMergeSelector
|
|
{
|
|
public:
|
|
/// Parameter max_total_size_to_merge is ignored.
|
|
PartsInPartition select(
|
|
const Partitions & partitions,
|
|
const size_t max_total_size_to_merge) override;
|
|
};
|
|
|
|
}
|