mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-03 04:52:10 +00:00
15 lines
304 B
C++
15 lines
304 B
C++
|
#pragma once
|
||
|
|
||
|
#include "IParserBase.h"
|
||
|
|
||
|
namespace DB
|
||
|
{
|
||
|
/// DROP FUNCTION function1
|
||
|
class ParserDropFunctionQuery : public IParserBase
|
||
|
{
|
||
|
protected:
|
||
|
const char * getName() const override { return "DROP FUNCTION query"; }
|
||
|
bool parseImpl(Pos & pos, ASTPtr & node, Expected & expected) override;
|
||
|
};
|
||
|
}
|