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