aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/clickhouse/src/Storages/LightweightDeleteDescription.cpp
blob: ae5e68da9c2d4cde52d2ff1e566fc4e87a2160a3 (plain) (blame)
1
2
3
4
5
6
7
8
9
#include <Storages/LightweightDeleteDescription.h>
#include <DataTypes/DataTypesNumber.h>

namespace DB
{

const NameAndTypePair LightweightDeleteDescription::FILTER_COLUMN {"_row_exists", std::make_shared<DataTypeUInt8>()};

}