mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-13 19:14:30 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
44 lines
1.2 KiB
C++
44 lines
1.2 KiB
C++
#pragma once
|
|
|
|
#include <Parsers/IAST.h>
|
|
#include <DataStreams/IBlockInputStream.h>
|
|
#include <cstddef>
|
|
#include <memory>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
struct BlockIO;
|
|
class Context;
|
|
|
|
/** Prepares an input stream which produce data containing in INSERT query
|
|
* Head of inserting data could be stored in INSERT ast directly
|
|
* Remaining (tail) data could be stored in input_buffer_tail_part
|
|
*/
|
|
class InputStreamFromASTInsertQuery : public IBlockInputStream
|
|
{
|
|
public:
|
|
InputStreamFromASTInsertQuery(const ASTPtr & ast,
|
|
ReadBuffer * input_buffer_tail_part,
|
|
const Block & header,
|
|
const Context & context,
|
|
const ASTPtr & input_function);
|
|
|
|
Block readImpl() override { return res_stream->read(); }
|
|
void readPrefixImpl() override { return res_stream->readPrefix(); }
|
|
void readSuffixImpl() override { return res_stream->readSuffix(); }
|
|
|
|
String getName() const override { return "InputStreamFromASTInsertQuery"; }
|
|
|
|
Block getHeader() const override { return res_stream->getHeader(); }
|
|
|
|
private:
|
|
std::unique_ptr<ReadBuffer> input_buffer_ast_part;
|
|
std::unique_ptr<ReadBuffer> input_buffer_contacenated;
|
|
|
|
BlockInputStreamPtr res_stream;
|
|
};
|
|
|
|
}
|