mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-02 12:32:04 +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;
|
|
};
|
|
}
|