2019-05-28 18:27:00 +00:00
|
|
|
#pragma once
|
|
|
|
|
2021-10-16 14:03:50 +00:00
|
|
|
#include <QueryPipeline/Pipe.h>
|
2022-04-19 20:47:29 +00:00
|
|
|
#include <Storages/IStorage.h>
|
2019-05-28 18:27:00 +00:00
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
2019-05-29 21:38:28 +00:00
|
|
|
/** Internal temporary storage for table function input(...)
|
2019-05-29 20:59:03 +00:00
|
|
|
*/
|
2019-05-28 18:27:00 +00:00
|
|
|
|
2022-05-03 06:43:28 +00:00
|
|
|
class StorageInput final : public IStorage
|
2019-05-28 18:27:00 +00:00
|
|
|
{
|
|
|
|
public:
|
2022-04-19 20:47:29 +00:00
|
|
|
StorageInput(const StorageID & table_id, const ColumnsDescription & columns_);
|
|
|
|
|
2019-05-28 18:27:00 +00:00
|
|
|
String getName() const override { return "Input"; }
|
2019-05-29 21:38:28 +00:00
|
|
|
|
|
|
|
/// A table will read from this stream.
|
2021-07-20 18:18:43 +00:00
|
|
|
void setPipe(Pipe pipe_);
|
2019-05-28 18:27:00 +00:00
|
|
|
|
2020-08-03 13:54:14 +00:00
|
|
|
Pipe read(
|
2019-05-28 18:27: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,
|
2019-05-28 18:27:00 +00:00
|
|
|
QueryProcessingStage::Enum processed_stage,
|
|
|
|
size_t max_block_size,
|
|
|
|
unsigned num_streams) override;
|
|
|
|
|
|
|
|
private:
|
2021-07-20 18:18:43 +00:00
|
|
|
Pipe pipe;
|
2019-05-28 18:27:00 +00:00
|
|
|
};
|
|
|
|
}
|