mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-24 08:32:02 +00:00
55 lines
1.6 KiB
C++
55 lines
1.6 KiB
C++
#pragma once
|
|
|
|
#include <Parsers/IAST.h>
|
|
#include <Interpreters/StorageID.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
|
|
/** INSERT query
|
|
*/
|
|
class ASTInsertQuery : public IAST
|
|
{
|
|
public:
|
|
StorageID table_id = StorageID::createEmpty();
|
|
ASTPtr columns;
|
|
String format;
|
|
ASTPtr select;
|
|
ASTPtr watch;
|
|
ASTPtr table_function;
|
|
ASTPtr settings_ast;
|
|
|
|
/// Data to insert
|
|
const char * data = nullptr;
|
|
const char * end = nullptr;
|
|
|
|
/// Query has additional data, which will be sent later
|
|
bool has_tail = false;
|
|
|
|
/// Try to find table function input() in SELECT part
|
|
void tryFindInputFunction(ASTPtr & input_function) const;
|
|
|
|
/** Get the text that identifies this element. */
|
|
String getID(char delim) const override { return "InsertQuery" + (delim + table_id.database_name) + delim + table_id.table_name; }
|
|
|
|
ASTPtr clone() const override
|
|
{
|
|
auto res = std::make_shared<ASTInsertQuery>(*this);
|
|
res->children.clear();
|
|
|
|
if (columns) { res->columns = columns->clone(); res->children.push_back(res->columns); }
|
|
if (select) { res->select = select->clone(); res->children.push_back(res->select); }
|
|
if (watch) { res->watch = watch->clone(); res->children.push_back(res->watch); }
|
|
if (table_function) { res->table_function = table_function->clone(); res->children.push_back(res->table_function); }
|
|
if (settings_ast) { res->settings_ast = settings_ast->clone(); res->children.push_back(res->settings_ast); }
|
|
|
|
return res;
|
|
}
|
|
|
|
protected:
|
|
void formatImpl(const FormatSettings & settings, FormatState & state, FormatStateStacked frame) const override;
|
|
};
|
|
|
|
}
|