mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-16 03:12:43 +00:00
e9c9db9335
Signed-off-by: Azat Khuzhin <a.khuzhin@semrush.com>
36 lines
838 B
C++
36 lines
838 B
C++
#pragma once
|
|
|
|
#include <Formats/FormatSettings.h>
|
|
#include <Storages/IStorage.h>
|
|
#include <Storages/MergeTree/MergeTreeData.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
class Context;
|
|
|
|
|
|
/** Implements the system table `storage`, which allows you to get information about all disks.
|
|
*/
|
|
class StorageSystemStoragePolicies final : public IStorage
|
|
{
|
|
public:
|
|
explicit StorageSystemStoragePolicies(const StorageID & table_id_);
|
|
|
|
std::string getName() const override { return "SystemStoragePolicies"; }
|
|
|
|
Pipe read(
|
|
const Names & column_names,
|
|
const StorageSnapshotPtr & storage_snapshot,
|
|
SelectQueryInfo & query_info,
|
|
ContextPtr context,
|
|
QueryProcessingStage::Enum processed_stage,
|
|
size_t max_block_size,
|
|
size_t num_streams) override;
|
|
|
|
bool isSystemStorage() const override { return true; }
|
|
};
|
|
|
|
}
|