ClickHouse/src/Storages/LightweightDeleteDescription.cpp

10 lines
228 B
C++
Raw Normal View History

2022-07-21 19:50:19 +00:00
#include <Storages/LightweightDeleteDescription.h>
#include <DataTypes/DataTypesNumber.h>
namespace DB
{
const NameAndTypePair LightweightDeleteDescription::filter_column {"_row_exists", std::make_shared<DataTypeUInt8>()};
}