mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-16 11:22:12 +00:00
8277e9d8f1
Add new class SettingsConstraints.
18 lines
172 B
C++
18 lines
172 B
C++
#pragma once
|
|
|
|
#include <Core/Field.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
struct SettingChange
|
|
{
|
|
String name;
|
|
Field value;
|
|
};
|
|
|
|
using SettingsChanges = std::vector<SettingChange>;
|
|
|
|
}
|