Tests fixed

This commit is contained in:
Dmitry Rubashkin 2019-08-14 16:47:48 +03:00
parent e56f626430
commit 4090e89410
2 changed files with 2 additions and 2 deletions

View File

@ -2,5 +2,5 @@
[249.75,499.5,749.25,899.1,949.05,989.01,998.001]
[250,500,750,900,950,990,999]
599.6
599.6
599.4
600

View File

@ -6,7 +6,7 @@ SELECT quantilesExactInclusive(0.25, 0.5, 0.75, 0.9, 0.95, 0.99, 0.999)(x) FROM
SELECT quantilesExact(0.25, 0.5, 0.75, 0.9, 0.95, 0.99, 0.999)(x) FROM (SELECT number AS x FROM num);
SELECT quantileExactExclusive(0.6)(x) FROM (SELECT number AS x FROM num);
SELECT quantileExactExclusive(0.6)(x) FROM (SELECT number AS x FROM num);
SELECT quantileExactInclusive(0.6)(x) FROM (SELECT number AS x FROM num);
SELECT quantileExact(0.6)(x) FROM (SELECT number AS x FROM num);
DROP TABLE num;