ClickHouse/src/Storages/MergeTree/MergeAlgorithm.h
2020-09-15 12:55:57 +03:00

18 lines
353 B
C++

#pragma once
#include <common/types.h>
namespace DB
{
/// Algorithm of Merge.
enum class MergeAlgorithm
{
Undecided, /// Not running yet
Horizontal, /// per-row merge of all columns
Vertical /// per-row merge of PK and secondary indices columns, per-column gather for non-PK columns
};
String toString(MergeAlgorithm merge_algorithm);
}