mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-19 22:22:00 +00:00
71 lines
1.8 KiB
C++
71 lines
1.8 KiB
C++
#include <DB/Columns/ColumnString.h>
|
|
#include <DB/DataTypes/DataTypeString.h>
|
|
#include <DB/DataTypes/DataTypesNumberFixed.h>
|
|
#include <DB/DataStreams/OneBlockInputStream.h>
|
|
#include <DB/Storages/StorageSystemSettings.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
|
|
StorageSystemSettings::StorageSystemSettings(const std::string & name_)
|
|
: name(name_)
|
|
, columns{
|
|
{ "name", new DataTypeString },
|
|
{ "value", new DataTypeString },
|
|
{ "changed", new DataTypeUInt8 },
|
|
}
|
|
{
|
|
}
|
|
|
|
StoragePtr StorageSystemSettings::create(const std::string & name_)
|
|
{
|
|
return (new StorageSystemSettings(name_))->thisPtr();
|
|
}
|
|
|
|
|
|
BlockInputStreams StorageSystemSettings::read(
|
|
const Names & column_names,
|
|
ASTPtr query,
|
|
const Context & context,
|
|
const Settings & settings,
|
|
QueryProcessingStage::Enum & processed_stage,
|
|
const size_t max_block_size,
|
|
const unsigned threads)
|
|
{
|
|
check(column_names);
|
|
processed_stage = QueryProcessingStage::FetchColumns;
|
|
|
|
ColumnWithTypeAndName col_name{new ColumnString, new DataTypeString, "name"};
|
|
ColumnWithTypeAndName col_value{new ColumnString, new DataTypeString, "value"};
|
|
ColumnWithTypeAndName col_changed{new ColumnUInt8, new DataTypeUInt8, "changed"};
|
|
|
|
#define ADD_SETTING(TYPE, NAME, DEFAULT) \
|
|
col_name.column->insert(String(#NAME)); \
|
|
col_value.column->insert(settings.NAME.toString()); \
|
|
col_changed.column->insert(UInt64(settings.NAME.changed));
|
|
|
|
APPLY_FOR_SETTINGS(ADD_SETTING)
|
|
#undef ADD_SETTING
|
|
|
|
#define ADD_LIMIT(TYPE, NAME, DEFAULT) \
|
|
col_name.column->insert(String(#NAME)); \
|
|
col_value.column->insert(settings.limits.NAME.toString()); \
|
|
col_changed.column->insert(UInt64(settings.limits.NAME.changed));
|
|
|
|
APPLY_FOR_LIMITS(ADD_LIMIT)
|
|
#undef ADD_LIMIT
|
|
|
|
Block block{
|
|
col_name,
|
|
col_value,
|
|
col_changed,
|
|
};
|
|
|
|
return BlockInputStreams(1, new OneBlockInputStream(block));
|
|
}
|
|
|
|
|
|
}
|