ClickHouse/dbms/src/Common/SettingsChanges.h

18 lines
172 B
C++
Raw Normal View History

#pragma once
#include <Core/Field.h>
namespace DB
{
struct SettingChange
{
String name;
Field value;
};
using SettingsChanges = std::vector<SettingChange>;
}