Modified comment [#CLICKHOUSE-31].

This commit is contained in:
Alexey Milovidov 2017-06-13 07:12:51 +03:00
parent 7f87bb07da
commit 5aa1a1da27

View File

@ -61,7 +61,7 @@ static bool parseDecimal(IParser::Pos & pos, IParser::Pos end, ASTSampleRatio::R
if (exponent < 0) if (exponent < 0)
res.denominator *= exp10(-exponent); res.denominator *= exp10(-exponent);
/// NOTE You do not need to delete the common power of ten from the numerator and denominator. /// NOTE You do not need to remove the common power of ten from the numerator and denominator.
return true; return true;
} }
@ -77,7 +77,7 @@ static bool parseDecimal(IParser::Pos & pos, IParser::Pos end, ASTSampleRatio::R
* - fraction in ordinary decimal notation * - fraction in ordinary decimal notation
* *
* 1.23e-1 * 1.23e-1
* - fraction in engineering decimal notation * - fraction in scientific decimal notation
* *
* 123 / 456 * 123 / 456
* - fraction with an ordinary denominator * - fraction with an ordinary denominator