mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-17 20:02:05 +00:00
12 lines
245 B
C++
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);
|
|
}
|
|
|
|
}
|