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

33 lines
818 B
C++
Raw Normal View History

2015-04-24 12:26:23 +00:00
#pragma once
2017-06-06 17:18:32 +00:00
#include <ext/shared_ptr_helper.h>
#include <Storages/System/IStorageSystemOneBlock.h>
2016-12-08 02:49:04 +00:00
2015-04-24 12:26:23 +00:00
namespace DB
{
2016-12-08 02:49:04 +00:00
class Context;
/** Implements system table 'columns', that allows to get information about columns for every table.
2015-04-24 12:26:23 +00:00
*/
class StorageSystemColumns : public ext::shared_ptr_helper<StorageSystemColumns>, public IStorage
2015-04-24 12:26:23 +00:00
{
2019-08-26 19:07:29 +00:00
friend struct ext::shared_ptr_helper<StorageSystemColumns>;
2015-04-24 12:26:23 +00:00
public:
std::string getName() const override { return "SystemColumns"; }
2015-04-24 12:26:23 +00:00
BlockInputStreams read(
const Names & column_names,
const SelectQueryInfo & query_info,
const Context & context,
QueryProcessingStage::Enum processed_stage,
size_t max_block_size,
unsigned num_streams) override;
protected:
StorageSystemColumns(const std::string & name_);
2015-04-24 12:26:23 +00:00
};
}