mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-04 13:32:13 +00:00
16 lines
110 B
C++
16 lines
110 B
C++
#pragma once
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
enum class TTLMode
|
|
{
|
|
DELETE,
|
|
MOVE,
|
|
GROUP_BY,
|
|
RECOMPRESS,
|
|
};
|
|
|
|
}
|