mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-11 18:14:03 +00:00
58 lines
1.7 KiB
C++
58 lines
1.7 KiB
C++
#pragma once
|
||
|
||
#include <statdaemons/OptimizedRegularExpression.h>
|
||
|
||
#include <DB/Interpreters/Context.h>
|
||
#include <DB/Storages/IStorage.h>
|
||
|
||
|
||
namespace DB
|
||
{
|
||
|
||
/** Таблица, представляющая собой объединение произвольного количества других таблиц.
|
||
* У всех таблиц должна быть одинаковая структура.
|
||
*/
|
||
class StorageMerge : public IStorage
|
||
{
|
||
public:
|
||
static StoragePtr create(
|
||
const std::string & name_, /// Имя таблицы.
|
||
NamesAndTypesListPtr columns_, /// Список столбцов.
|
||
const String & source_database_, /// В какой БД искать таблицы-источники.
|
||
const String & table_name_regexp_, /// Регексп имён таблиц-источников.
|
||
Context & context_); /// Известные таблицы.
|
||
|
||
std::string getName() const { return "Merge"; }
|
||
std::string getTableName() const { return name; }
|
||
bool supportsSampling() const { return true; }
|
||
|
||
const NamesAndTypesList & getColumnsList() const { return *columns; }
|
||
|
||
BlockInputStreams read(
|
||
const Names & column_names,
|
||
ASTPtr query,
|
||
const Settings & settings,
|
||
QueryProcessingStage::Enum & processed_stage,
|
||
size_t max_block_size = DEFAULT_BLOCK_SIZE,
|
||
unsigned threads = 1);
|
||
|
||
void dropImpl() {}
|
||
void rename(const String & new_path_to_db, const String & new_name) { name = new_name; }
|
||
|
||
private:
|
||
String name;
|
||
NamesAndTypesListPtr columns;
|
||
String source_database;
|
||
OptimizedRegularExpression table_name_regexp;
|
||
Context context;
|
||
|
||
StorageMerge(
|
||
const std::string & name_,
|
||
NamesAndTypesListPtr columns_,
|
||
const String & source_database_,
|
||
const String & table_name_regexp_,
|
||
Context & context_);
|
||
};
|
||
|
||
}
|