mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-16 11:22:12 +00:00
14 lines
191 B
C++
14 lines
191 B
C++
|
#pragma once
|
||
|
#include <Core/NamesAndTypes.h>
|
||
|
#include "Storages/TTLDescription.h"
|
||
|
|
||
|
namespace DB
|
||
|
{
|
||
|
|
||
|
struct LightweightDeleteDescription
|
||
|
{
|
||
|
static const NameAndTypePair filter_column;
|
||
|
};
|
||
|
|
||
|
}
|