mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-26 09:32:01 +00:00
16 lines
120 B
C++
16 lines
120 B
C++
#pragma once
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
enum class TTLMode : uint8_t
|
|
{
|
|
DELETE,
|
|
MOVE,
|
|
GROUP_BY,
|
|
RECOMPRESS,
|
|
};
|
|
|
|
}
|