ClickHouse/src/Common/SettingsChanges.h

36 lines
942 B
C++
Raw Normal View History

#pragma once
#include <Core/Field.h>
namespace DB
{
2021-09-15 18:06:20 +00:00
class IColumn;
struct SettingChange
{
String name;
Field value;
2020-04-17 19:54:53 +00:00
SettingChange() = default;
2020-07-22 12:02:47 +00:00
SettingChange(const std::string_view & name_, const Field & value_) : name(name_), value(value_) {}
SettingChange(const std::string_view & name_, Field && value_) : name(name_), value(std::move(value_)) {}
friend bool operator ==(const SettingChange & lhs, const SettingChange & rhs) { return (lhs.name == rhs.name) && (lhs.value == rhs.value); }
friend bool operator !=(const SettingChange & lhs, const SettingChange & rhs) { return !(lhs == rhs); }
};
2020-07-22 12:02:47 +00:00
class SettingsChanges : public std::vector<SettingChange>
{
public:
using std::vector<SettingChange>::vector;
bool tryGet(const std::string_view & name, Field & out_value) const;
const Field * tryGet(const std::string_view & name) const;
Field * tryGet(const std::string_view & name);
};
}