mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-19 22:22:00 +00:00
32 lines
717 B
C++
32 lines
717 B
C++
#pragma once
|
|
|
|
#include <Core/BaseSettings.h>
|
|
#include <Core/Settings.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
class ASTStorage;
|
|
|
|
|
|
#define SET_RELATED_SETTINGS(M) \
|
|
M(Bool, persistent, true, "Disable setting to avoid the overhead of writing to disk for StorageSet", 0) \
|
|
M(String, disk, "default", "Name of the disk used to persist set data", 0)
|
|
|
|
#define LIST_OF_SET_SETTINGS(M) \
|
|
SET_RELATED_SETTINGS(M) \
|
|
FORMAT_FACTORY_SETTINGS(M)
|
|
|
|
DECLARE_SETTINGS_TRAITS(setSettingsTraits, LIST_OF_SET_SETTINGS)
|
|
|
|
|
|
/** Settings for the Set engine.
|
|
* Could be loaded from a CREATE TABLE query (SETTINGS clause).
|
|
*/
|
|
struct SetSettings : public BaseSettings<setSettingsTraits>
|
|
{
|
|
void loadFromQuery(ASTStorage & storage_def);
|
|
};
|
|
|
|
}
|