ClickHouse/dbms/include/DB/Parsers/ASTInsertQuery.h

83 lines
2.1 KiB
C++
Raw Normal View History

2011-10-30 05:19:41 +00:00
#pragma once
#include <DB/Parsers/ASTExpressionList.h>
#include <DB/Parsers/ASTFunction.h>
namespace DB
{
/** INSERT запрос
*/
class ASTInsertQuery : public IAST
{
public:
String database;
String table;
ASTPtr columns;
String format;
ASTPtr select;
2014-03-24 13:59:04 +00:00
/// Идентификатор запроса INSERT. Используется при репликации.
String insert_id;
2011-10-30 05:19:41 +00:00
/// Данные для вставки
2014-04-08 07:31:51 +00:00
const char * data = nullptr;
const char * end = nullptr;
2011-10-30 05:19:41 +00:00
2014-12-17 15:26:24 +00:00
ASTInsertQuery() = default;
ASTInsertQuery(const StringRange range_) : IAST(range_) {}
2011-10-30 05:19:41 +00:00
/** Получить текст, который идентифицирует этот элемент. */
2014-12-17 15:26:24 +00:00
String getID() const override { return "InsertQuery_" + database + "_" + table; };
2011-12-12 06:15:34 +00:00
2014-12-17 15:26:24 +00:00
ASTPtr clone() const override
2011-12-12 06:15:34 +00:00
{
auto res = std::make_shared<ASTInsertQuery>(*this);
2011-12-12 06:15:34 +00:00
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;
2011-12-12 06:15:34 +00:00
}
protected:
void formatImpl(const FormatSettings & settings, FormatState & state, FormatStateStacked frame) const override
{
frame.need_parens = false;
settings.ostr << (settings.hilite ? hilite_keyword : "") << "INSERT INTO " << (settings.hilite ? hilite_none : "")
<< (!database.empty() ? backQuoteIfNeed(database) + "." : "") << backQuoteIfNeed(table);
if (!insert_id.empty())
settings.ostr << (settings.hilite ? hilite_keyword : "") << " ID = " << (settings.hilite ? hilite_none : "")
<< mysqlxx::quote << insert_id;
if (columns)
{
settings.ostr << " (";
columns->formatImpl(settings, state, frame);
settings.ostr << ")";
}
if (select)
{
settings.ostr << " ";
select->formatImpl(settings, state, frame);
}
else
{
if (!format.empty())
{
settings.ostr << (settings.hilite ? hilite_keyword : "") << " FORMAT " << (settings.hilite ? hilite_none : "") << format;
}
else
{
settings.ostr << (settings.hilite ? hilite_keyword : "") << " VALUES" << (settings.hilite ? hilite_none : "");
}
}
}
2011-10-30 05:19:41 +00:00
};
}