mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-12 02:23:14 +00:00
20 lines
492 B
C
20 lines
492 B
C
|
#pragma once
|
|||
|
|
|||
|
#include <DB/Parsers/IParserBase.h>
|
|||
|
|
|||
|
|
|||
|
namespace DB
|
|||
|
{
|
|||
|
|
|||
|
/** Коэффициент сэмплирования вида 0.1 или 1/10.
|
|||
|
* Парсится как рациональное число без преобразования в IEEE-754.
|
|||
|
*/
|
|||
|
class ParserSampleRatio : public IParserBase
|
|||
|
{
|
|||
|
protected:
|
|||
|
const char * getName() const { return "Sample ratio or offset"; }
|
|||
|
bool parseImpl(Pos & pos, Pos end, ASTPtr & node, Pos & max_parsed_pos, Expected & expected);
|
|||
|
};
|
|||
|
|
|||
|
}
|