2012-05-08 11:19:00 +00:00
|
|
|
#pragma once
|
|
|
|
|
2017-04-01 09:19:00 +00:00
|
|
|
#include <Storages/IStorage.h>
|
2012-05-08 11:19:00 +00:00
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
2016-12-08 02:49:04 +00:00
|
|
|
class Context;
|
|
|
|
|
|
|
|
|
2017-04-16 15:00:33 +00:00
|
|
|
/** Implements the system table `tables`, which allows you to get information about all tables.
|
2012-05-08 11:19:00 +00:00
|
|
|
*/
|
2022-05-03 06:43:28 +00:00
|
|
|
class StorageSystemTables final : public IStorage
|
2012-05-08 11:19:00 +00:00
|
|
|
{
|
|
|
|
public:
|
2022-04-19 20:47:29 +00:00
|
|
|
explicit StorageSystemTables(const StorageID & table_id_);
|
|
|
|
|
2014-10-03 17:55:36 +00:00
|
|
|
std::string getName() const override { return "SystemTables"; }
|
2012-05-08 11:19:00 +00:00
|
|
|
|
2020-08-06 12:24:05 +00:00
|
|
|
Pipe read(
|
2012-05-08 11:19:00 +00:00
|
|
|
const Names & column_names,
|
2021-07-09 03:15:41 +00:00
|
|
|
const StorageSnapshotPtr & storage_snapshot,
|
2020-09-20 17:52:17 +00:00
|
|
|
SelectQueryInfo & query_info,
|
2021-04-10 23:33:54 +00:00
|
|
|
ContextPtr context,
|
2018-04-19 15:18:26 +00:00
|
|
|
QueryProcessingStage::Enum processed_stage,
|
2019-02-18 23:38:44 +00:00
|
|
|
size_t max_block_size,
|
2022-10-07 10:46:45 +00:00
|
|
|
size_t num_streams) override;
|
2012-05-08 11:19:00 +00:00
|
|
|
|
2021-11-19 10:25:55 +00:00
|
|
|
bool isSystemStorage() const override { return true; }
|
2012-05-08 11:19:00 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|