2015-10-21 14:57:10 +00:00
|
|
|
#include <DB/Parsers/ParserQueryWithOutput.h>
|
|
|
|
#include <DB/Parsers/ASTIdentifier.h>
|
|
|
|
#include <DB/Parsers/ExpressionElementParsers.h>
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
|
|
|
bool ParserQueryWithOutput::parseFormat(ASTQueryWithOutput & query, Pos & pos, Pos end, ASTPtr & node, Pos & max_parsed_pos, Expected & expected)
|
|
|
|
{
|
|
|
|
ParserString s_format("FORMAT", true, true);
|
|
|
|
|
|
|
|
if (s_format.ignore(pos, end, max_parsed_pos, expected))
|
|
|
|
{
|
|
|
|
ws.ignore(pos, end);
|
|
|
|
|
|
|
|
ParserIdentifier format_p;
|
|
|
|
|
|
|
|
if (!format_p.parse(pos, end, query.format, max_parsed_pos, expected))
|
|
|
|
return false;
|
|
|
|
typeid_cast<ASTIdentifier &>(*(query.format)).kind = ASTIdentifier::Format;
|
|
|
|
|
|
|
|
ws.ignore(pos, end);
|
|
|
|
}
|
2015-10-21 15:04:20 +00:00
|
|
|
|
|
|
|
return true;
|
2015-10-21 14:57:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|