mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-17 13:13:36 +00:00
18 lines
381 B
C++
18 lines
381 B
C++
#pragma once
|
|
|
|
#include <Parsers/IParserBase.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
/// Parse either a partition value as a (possibly compound) literal or a partition ID.
|
|
/// Produce ASTPartition.
|
|
class ParserPartition : public IParserBase
|
|
{
|
|
protected:
|
|
const char * getName() const override { return "partition"; }
|
|
bool parseImpl(Pos & pos, ASTPtr & node, Expected & expected) override;
|
|
};
|
|
|
|
}
|