mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 13:42:02 +00:00
178 lines
4.8 KiB
C++
178 lines
4.8 KiB
C++
#include <Parsers/ASTIdentifier.h>
|
|
#include <Parsers/ASTSelectWithUnionQuery.h>
|
|
#include <Parsers/ASTInsertQuery.h>
|
|
|
|
#include <Parsers/CommonParsers.h>
|
|
#include <Parsers/ExpressionElementParsers.h>
|
|
#include <Parsers/ExpressionListParsers.h>
|
|
#include <Parsers/ParserSelectWithUnionQuery.h>
|
|
#include <Parsers/ParserInsertQuery.h>
|
|
#include <Parsers/ParserSetQuery.h>
|
|
#include <Common/typeid_cast.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
namespace ErrorCodes
|
|
{
|
|
extern const int SYNTAX_ERROR;
|
|
}
|
|
|
|
|
|
bool ParserInsertQuery::parseImpl(Pos & pos, ASTPtr & node, Expected & expected)
|
|
{
|
|
ParserKeyword s_insert_into("INSERT INTO");
|
|
ParserKeyword s_table("TABLE");
|
|
ParserKeyword s_function("FUNCTION");
|
|
ParserToken s_dot(TokenType::Dot);
|
|
ParserKeyword s_values("VALUES");
|
|
ParserKeyword s_format("FORMAT");
|
|
ParserKeyword s_settings("SETTINGS");
|
|
ParserKeyword s_select("SELECT");
|
|
ParserKeyword s_with("WITH");
|
|
ParserToken s_lparen(TokenType::OpeningRoundBracket);
|
|
ParserToken s_rparen(TokenType::ClosingRoundBracket);
|
|
ParserIdentifier name_p;
|
|
ParserList columns_p(std::make_unique<ParserCompoundIdentifier>(), std::make_unique<ParserToken>(TokenType::Comma), false);
|
|
ParserFunction table_function_p;
|
|
|
|
ASTPtr database;
|
|
ASTPtr table;
|
|
ASTPtr columns;
|
|
ASTPtr format;
|
|
ASTPtr select;
|
|
ASTPtr table_function;
|
|
ASTPtr settings_ast;
|
|
/// Insertion data
|
|
const char * data = nullptr;
|
|
|
|
if (!s_insert_into.ignore(pos, expected))
|
|
return false;
|
|
|
|
s_table.ignore(pos, expected);
|
|
|
|
if (s_function.ignore(pos, expected))
|
|
{
|
|
if (!table_function_p.parse(pos, table_function, expected))
|
|
return false;
|
|
}
|
|
else
|
|
{
|
|
if (!name_p.parse(pos, table, expected))
|
|
return false;
|
|
|
|
if (s_dot.ignore(pos, expected))
|
|
{
|
|
database = table;
|
|
if (!name_p.parse(pos, table, expected))
|
|
return false;
|
|
}
|
|
}
|
|
|
|
/// Is there a list of columns
|
|
if (s_lparen.ignore(pos, expected))
|
|
{
|
|
if (!columns_p.parse(pos, columns, expected))
|
|
return false;
|
|
|
|
if (!s_rparen.ignore(pos, expected))
|
|
return false;
|
|
}
|
|
|
|
Pos before_select = pos;
|
|
|
|
/// VALUES or FORMAT or SELECT
|
|
if (s_values.ignore(pos, expected))
|
|
{
|
|
data = pos->begin;
|
|
}
|
|
else if (s_format.ignore(pos, expected))
|
|
{
|
|
if (!name_p.parse(pos, format, expected))
|
|
return false;
|
|
}
|
|
else if (s_select.ignore(pos, expected) || s_with.ignore(pos,expected))
|
|
{
|
|
pos = before_select;
|
|
ParserSelectWithUnionQuery select_p;
|
|
select_p.parse(pos, select, expected);
|
|
|
|
/// FORMAT section is expected if we have input() in SELECT part
|
|
if (s_format.ignore(pos, expected) && !name_p.parse(pos, format, expected))
|
|
return false;
|
|
}
|
|
else
|
|
{
|
|
return false;
|
|
}
|
|
|
|
if (s_settings.ignore(pos, expected))
|
|
{
|
|
ParserSetQuery parser_settings(true);
|
|
if (!parser_settings.parse(pos, settings_ast, expected))
|
|
return false;
|
|
}
|
|
|
|
if (format)
|
|
{
|
|
Pos last_token = pos;
|
|
--last_token;
|
|
data = last_token->end;
|
|
|
|
if (data < end && *data == ';')
|
|
throw Exception("You have excessive ';' symbol before data for INSERT.\n"
|
|
"Example:\n\n"
|
|
"INSERT INTO t (x, y) FORMAT TabSeparated\n"
|
|
";\tHello\n"
|
|
"2\tWorld\n"
|
|
"\n"
|
|
"Note that there is no ';' just after format name, "
|
|
"you need to put at least one whitespace symbol before the data.", ErrorCodes::SYNTAX_ERROR);
|
|
|
|
while (data < end && (*data == ' ' || *data == '\t' || *data == '\f'))
|
|
++data;
|
|
|
|
/// Data starts after the first newline, if there is one, or after all the whitespace characters, otherwise.
|
|
|
|
if (data < end && *data == '\r')
|
|
++data;
|
|
|
|
if (data < end && *data == '\n')
|
|
++data;
|
|
}
|
|
|
|
auto query = std::make_shared<ASTInsertQuery>();
|
|
node = query;
|
|
|
|
if (table_function)
|
|
{
|
|
query->table_function = table_function;
|
|
}
|
|
else
|
|
{
|
|
tryGetIdentifierNameInto(database, query->database);
|
|
tryGetIdentifierNameInto(table, query->table);
|
|
}
|
|
|
|
tryGetIdentifierNameInto(format, query->format);
|
|
|
|
query->columns = columns;
|
|
query->select = select;
|
|
query->settings_ast = settings_ast;
|
|
query->data = data != end ? data : nullptr;
|
|
query->end = end;
|
|
|
|
if (columns)
|
|
query->children.push_back(columns);
|
|
if (select)
|
|
query->children.push_back(select);
|
|
if (settings_ast)
|
|
query->children.push_back(settings_ast);
|
|
|
|
return true;
|
|
}
|
|
|
|
|
|
}
|