mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-15 19:02:04 +00:00
23 lines
570 B
C++
23 lines
570 B
C++
|
#pragma once
|
||
|
|
||
|
#include <Storages/System/IStorageSystemOneBlock.h>
|
||
|
#include <Storages/Cache/SchemaCache.h>
|
||
|
|
||
|
namespace DB
|
||
|
{
|
||
|
|
||
|
class StorageSystemSchemaInferenceCache final : public IStorageSystemOneBlock<StorageSystemSchemaInferenceCache>
|
||
|
{
|
||
|
public:
|
||
|
std::string getName() const override { return "SystemSettingsChanges"; }
|
||
|
|
||
|
static NamesAndTypesList getNamesAndTypes();
|
||
|
|
||
|
protected:
|
||
|
using IStorageSystemOneBlock::IStorageSystemOneBlock;
|
||
|
|
||
|
void fillData(MutableColumns & res_columns, ContextPtr context, const SelectQueryInfo & query_info) const override;
|
||
|
};
|
||
|
|
||
|
}
|