ClickHouse/src/Parsers/ParserDropFunctionQuery.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
304 B
C++
Raw Normal View History

2021-05-14 22:43:04 +00:00
#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;
};
}