blob: aed4b5a6f4242d0a95141d049bfe864a0356630b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#pragma once
#include <Parsers/IParserBase.h>
namespace DB
{
class ParserProjectionSelectQuery : public IParserBase
{
protected:
const char * getName() const override { return "PROJECTION SELECT query"; }
bool parseImpl(Pos & pos, ASTPtr & node, Expected & expected) override;
};
}
|