mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-12 01:12:12 +00:00
777b5bc15b
... IStorage has deleted copy ctor / assignment already
34 lines
733 B
C++
34 lines
733 B
C++
#pragma once
|
|
|
|
#include <Storages/IStorage.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
class Context;
|
|
|
|
|
|
/** Implements the system table `tables`, which allows you to get information about all tables.
|
|
*/
|
|
class StorageSystemTables final : public IStorage
|
|
{
|
|
public:
|
|
explicit StorageSystemTables(const StorageID & table_id_);
|
|
|
|
std::string getName() const override { return "SystemTables"; }
|
|
|
|
Pipe read(
|
|
const Names & column_names,
|
|
const StorageSnapshotPtr & storage_snapshot,
|
|
SelectQueryInfo & query_info,
|
|
ContextPtr context,
|
|
QueryProcessingStage::Enum processed_stage,
|
|
size_t max_block_size,
|
|
unsigned num_streams) override;
|
|
|
|
bool isSystemStorage() const override { return true; }
|
|
};
|
|
|
|
}
|