mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-04 21:42:39 +00:00
15 lines
294 B
C++
15 lines
294 B
C++
#pragma once
|
|
|
|
#include "IParserBase.h"
|
|
|
|
namespace DB
|
|
{
|
|
|
|
class ParserAlterNamedCollectionQuery : public IParserBase
|
|
{
|
|
protected:
|
|
const char * getName() const override { return "Alter NAMED COLLECTION query"; }
|
|
bool parseImpl(Pos & pos, ASTPtr & node, Expected & expected) override;
|
|
};
|
|
}
|