blob: 7e883d144efcda17d0cc8d20dbe5e4cfd1baf540 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#pragma once
#include <Storages/System/IStorageSystemOneBlock.h>
namespace DB
{
class StorageSystemRemoteDataPaths : public IStorage
{
public:
explicit StorageSystemRemoteDataPaths(const StorageID & table_id_);
std::string getName() const override { return "SystemRemoteDataPaths"; }
bool isSystemStorage() const override { return true; }
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;
};
}
|