ClickHouse/src/Disks/DiskType.cpp
2022-08-24 17:51:26 +02:00

12 lines
245 B
C++

#include "DiskType.h"
namespace DB
{
bool DataSourceDescription::operator==(const DataSourceDescription & other) const
{
return std::tie(type, description, is_encrypted) == std::tie(other.type, other.description, other.is_encrypted);
}
}