mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-19 14:11:58 +00:00
46 lines
1.0 KiB
C++
46 lines
1.0 KiB
C++
#pragma once
|
|
|
|
#include <Parsers/IAST.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
|
|
/** INSERT query
|
|
*/
|
|
class ASTInsertQuery : public IAST
|
|
{
|
|
public:
|
|
String database;
|
|
String table;
|
|
ASTPtr columns;
|
|
String format;
|
|
ASTPtr select;
|
|
/// Data to insert
|
|
const char * data = nullptr;
|
|
const char * end = nullptr;
|
|
|
|
ASTInsertQuery() = default;
|
|
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<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); }
|
|
|
|
return res;
|
|
}
|
|
|
|
protected:
|
|
void formatImpl(const FormatSettings & settings, FormatState & state, FormatStateStacked frame) const override;
|
|
};
|
|
|
|
}
|