2015-04-24 12:26:23 +00:00
|
|
|
#pragma once
|
|
|
|
|
2017-06-06 17:18:32 +00:00
|
|
|
#include <ext/shared_ptr_helper.h>
|
2018-07-24 14:28:56 +00:00
|
|
|
#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;
|
|
|
|
|
2017-02-11 17:43:28 +00:00
|
|
|
/** Implements system table 'columns', that allows to get information about columns for every table.
|
2015-04-24 12:26:23 +00:00
|
|
|
*/
|
2020-03-19 23:48:53 +00:00
|
|
|
class StorageSystemColumns final : 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:
|
2017-04-01 07:20:54 +00:00
|
|
|
std::string getName() const override { return "SystemColumns"; }
|
2015-04-24 12:26:23 +00:00
|
|
|
|
2020-02-19 16:07:28 +00:00
|
|
|
Pipes read(
|
2018-08-25 16:07:48 +00:00
|
|
|
const Names & column_names,
|
|
|
|
const SelectQueryInfo & query_info,
|
|
|
|
const Context & context,
|
|
|
|
QueryProcessingStage::Enum processed_stage,
|
2019-02-18 23:38:44 +00:00
|
|
|
size_t max_block_size,
|
2018-08-25 16:07:48 +00:00
|
|
|
unsigned num_streams) override;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
StorageSystemColumns(const std::string & name_);
|
2015-04-24 12:26:23 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|