mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-19 14:11:58 +00:00
19 lines
317 B
C++
19 lines
317 B
C++
|
#pragma once
|
||
|
#include <Parsers/IParserBase.h>
|
||
|
|
||
|
|
||
|
namespace DB
|
||
|
{
|
||
|
|
||
|
|
||
|
class ParserSystemQuery : public IParserBase
|
||
|
{
|
||
|
public:
|
||
|
ParserSystemQuery() = default;
|
||
|
|
||
|
protected:
|
||
|
const char * getName() const override { return "SYSTEM query"; }
|
||
|
bool parseImpl(Pos & pos, ASTPtr & node, Expected & expected) override;
|
||
|
};
|
||
|
|
||
|
}
|