mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-12 10:34:21 +00:00
34 lines
755 B
C++
34 lines
755 B
C++
#pragma once
|
|
|
|
#include <DB/Storages/IStorage.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
class StorageSystemMerges : public IStorage
|
|
{
|
|
public:
|
|
static StoragePtr create(const std::string & name);
|
|
|
|
std::string getName() const override { return "SystemMerges"; }
|
|
std::string getTableName() const override { return name; }
|
|
|
|
const NamesAndTypesList & getColumnsListImpl() const override { return columns; }
|
|
BlockInputStreams read(
|
|
const Names & column_names,
|
|
ASTPtr query,
|
|
const Context & context,
|
|
const Settings & settings,
|
|
QueryProcessingStage::Enum & processed_stage,
|
|
size_t max_block_size = DEFAULT_BLOCK_SIZE,
|
|
unsigned threads = 1) override;
|
|
|
|
private:
|
|
const std::string name;
|
|
NamesAndTypesList columns;
|
|
|
|
StorageSystemMerges(const std::string & name);
|
|
};
|
|
|
|
}
|