mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-03 04:52:10 +00:00
17 lines
315 B
C++
17 lines
315 B
C++
|
#pragma once
|
||
|
|
||
|
#include <Parsers/IParserBase.h>
|
||
|
|
||
|
namespace DB
|
||
|
{
|
||
|
|
||
|
/// Parser for ASTRefreshStrategy
|
||
|
class ParserRefreshStrategy : public IParserBase
|
||
|
{
|
||
|
protected:
|
||
|
const char * getName() const override { return "refresh strategy"; }
|
||
|
bool parseImpl(Pos & pos, ASTPtr & node, Expected & expected) override;
|
||
|
};
|
||
|
|
||
|
}
|