blob: da4669aaf37911b8306944fa4573b36dc815904e (
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
28
29
30
31
32
33
|
#pragma once
#include <QueryPipeline/Pipe.h>
#include <Storages/IStorage.h>
namespace DB
{
/** Internal temporary storage for table function input(...)
*/
class StorageInput final : public IStorage
{
public:
StorageInput(const StorageID & table_id, const ColumnsDescription & columns_);
String getName() const override { return "Input"; }
/// A table will read from this stream.
void setPipe(Pipe pipe_);
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;
private:
Pipe pipe;
};
}
|