mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-13 19:14:30 +00:00
24 lines
431 B
C
24 lines
431 B
C
|
#pragma once
|
||
|
|
||
|
#include <DB/Parsers/IParserBase.h>
|
||
|
#include <DB/Parsers/ExpressionElementParsers.h>
|
||
|
|
||
|
|
||
|
namespace DB
|
||
|
{
|
||
|
|
||
|
/** Запрос типа такого:
|
||
|
* DROP|DETACH TABLE [IF EXISTS] [db.]name
|
||
|
*
|
||
|
* Или:
|
||
|
* DROP DATABASE [IF EXISTS] db
|
||
|
*/
|
||
|
class ParserDropQuery : public IParserBase
|
||
|
{
|
||
|
protected:
|
||
|
String getName() { return "DROP query"; }
|
||
|
bool parseImpl(Pos & pos, Pos end, ASTPtr & node, String & expected);
|
||
|
};
|
||
|
|
||
|
}
|