ClickHouse/dbms/src/Storages/System/StorageSystemFunctions.h

44 lines
1.1 KiB
C++
Raw Normal View History

2015-04-24 15:49:30 +00:00
#pragma once
#include <ext/shared_ptr_helper.hpp>
#include <Storages/IStorage.h>
2016-12-08 02:49:04 +00:00
2015-04-24 15:49:30 +00:00
namespace DB
{
2016-12-08 02:49:04 +00:00
class Context;
2017-04-16 15:00:33 +00:00
/** Implements `functions`system table, which allows you to get a list
* all normal and aggregate functions.
2015-04-24 15:49:30 +00:00
*/
class StorageSystemFunctions : private ext::shared_ptr_helper<StorageSystemFunctions>, public IStorage
2015-04-24 15:49:30 +00:00
{
friend class ext::shared_ptr_helper<StorageSystemFunctions>;
2015-04-24 15:49:30 +00:00
public:
static StoragePtr create(const std::string & name_);
2015-04-24 15:49:30 +00:00
std::string getName() const override { return "SystemFunctions"; }
std::string getTableName() const override { return name; }
const NamesAndTypesList & getColumnsListImpl() const override { return columns; }
2015-04-24 15:49:30 +00:00
BlockInputStreams read(
const Names & column_names,
ASTPtr query,
const Context & context,
QueryProcessingStage::Enum & processed_stage,
size_t max_block_size = DEFAULT_BLOCK_SIZE,
unsigned threads = 1) override;
2015-04-24 15:49:30 +00:00
private:
StorageSystemFunctions(const std::string & name_);
2015-04-24 15:49:30 +00:00
private:
const std::string name;
NamesAndTypesList columns;
2015-04-24 15:49:30 +00:00
};
}