mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-16 20:53:27 +00:00
21 lines
385 B
C++
21 lines
385 B
C++
#pragma once
|
|
|
|
#include <Parsers/IParserBase.h>
|
|
#include <Parsers/ExpressionElementParsers.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
/** Query like this:
|
|
* UNDROP TABLE [db.]name [UUID uuid]
|
|
*/
|
|
class ParserUndropQuery : public IParserBase
|
|
{
|
|
protected:
|
|
const char * getName() const override{ return "UNDROP query"; }
|
|
bool parseImpl(Pos & pos, ASTPtr & node, Expected & expected) override;
|
|
};
|
|
|
|
}
|