ClickHouse/src/Storages/LightweightDeleteDescription.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

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
{
2022-07-25 14:15:15 +00:00
const NameAndTypePair LightweightDeleteDescription::FILTER_COLUMN {"_row_exists", std::make_shared<DataTypeUInt8>()};
2022-07-21 19:50:19 +00:00
}