ClickHouse/dbms/src/Interpreters/InterpreterInsertQuery.h

47 lines
1.2 KiB
C++
Raw Normal View History

2011-10-30 11:30:52 +00:00
#pragma once
#include <DataStreams/IBlockOutputStream.h>
#include <DataStreams/BlockIO.h>
#include <Interpreters/Context.h>
#include <Interpreters/IInterpreter.h>
#include <Parsers/ASTInsertQuery.h>
2011-10-30 11:30:52 +00:00
namespace DB
{
2017-06-02 21:37:28 +00:00
/** Interprets the INSERT query.
2011-10-30 11:30:52 +00:00
*/
2015-06-18 02:11:05 +00:00
class InterpreterInsertQuery : public IInterpreter
2011-10-30 11:30:52 +00:00
{
public:
InterpreterInsertQuery(
const ASTPtr & query_ptr_,
const Context & context_,
bool allow_materialized_ = false,
bool no_squash_ = false,
bool no_destination_ = false);
2011-10-30 11:30:52 +00:00
2017-06-02 21:37:28 +00:00
/** Prepare a request for execution. Return block streams
* - the stream into which you can write data to execute the query, if INSERT;
* - the stream from which you can read the result of the query, if SELECT and similar;
* Or nothing if the request INSERT SELECT (self-sufficient query - does not accept the input data, does not return the result).
*/
BlockIO execute() override;
2012-03-19 12:57:56 +00:00
2020-03-02 20:23:58 +00:00
StorageID getDatabaseTable() const;
2018-07-16 14:52:02 +00:00
2011-10-30 11:30:52 +00:00
private:
2020-01-24 16:20:36 +00:00
StoragePtr getTable(ASTInsertQuery & query);
Block getSampleBlock(const ASTInsertQuery & query, const StoragePtr & table);
ASTPtr query_ptr;
2019-03-29 14:50:48 +00:00
const Context & context;
const bool allow_materialized;
const bool no_squash;
const bool no_destination;
2011-10-30 11:30:52 +00:00
};
}