ClickHouse/src/Disks/DiskType.cpp

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

12 lines
245 B
C++
Raw Normal View History

2022-08-20 15:21:03 +00:00
#include "DiskType.h"
namespace DB
{
2022-08-24 15:51:26 +00:00
bool DataSourceDescription::operator==(const DataSourceDescription & other) const
2022-08-20 15:21:03 +00:00
{
2022-08-24 15:51:26 +00:00
return std::tie(type, description, is_encrypted) == std::tie(other.type, other.description, other.is_encrypted);
2022-08-20 15:21:03 +00:00
}
}