ClickHouse/dbms/Parsers/ParserPartition.h
Ivan 97f2a2213e
Move all folders inside /dbms one level up (#9974)
* Move some code outside dbms/src folder
* Fix paths
2020-04-02 02:51:21 +03:00

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;
};
}