mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
22 lines
481 B
C++
22 lines
481 B
C++
#pragma once
|
|
|
|
#include <DB/Parsers/IParserBase.h>
|
|
#include <DB/Parsers/CommonParsers.h>
|
|
#include <DB/Parsers/ASTQueryWithOutput.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
/** Парсер для запросов поддерживающих секцию FORMAT.
|
|
*/
|
|
class ParserQueryWithOutput : public IParserBase
|
|
{
|
|
protected:
|
|
bool parseFormat(ASTQueryWithOutput & query, Pos & pos, Pos end, ASTPtr & node, Pos & max_parsed_pos, Expected & expected);
|
|
|
|
protected:
|
|
ParserWhiteSpaceOrComments ws;
|
|
};
|
|
|
|
}
|