ClickHouse/src/Storages/LightweightDeleteDescription.cpp
2022-07-25 16:32:16 +02:00

10 lines
228 B
C++

#include <Storages/LightweightDeleteDescription.h>
#include <DataTypes/DataTypesNumber.h>
namespace DB
{
const NameAndTypePair LightweightDeleteDescription::FILTER_COLUMN {"_row_exists", std::make_shared<DataTypeUInt8>()};
}