#pragma once #include namespace DB { /** INSERT query */ class ASTInsertQuery : public IAST { public: String database; String table; ASTPtr columns; String format; ASTPtr select; ASTPtr table_function; // Set to true if the data should only be inserted into attached views bool no_destination = false; /// Data to insert const char * data = nullptr; const char * end = nullptr; ASTInsertQuery() = default; explicit ASTInsertQuery(const StringRange range_) : IAST(range_) {} /** Get the text that identifies this element. */ String getID() const override { return "InsertQuery_" + database + "_" + table; }; ASTPtr clone() const override { auto res = std::make_shared(*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 (table_function) { res->table_function = table_function->clone(); res->children.push_back(res->table_function); } return res; } protected: void formatImpl(const FormatSettings & settings, FormatState & state, FormatStateStacked frame) const override; }; }