Added a test

This commit is contained in:
Alexey Milovidov 2020-07-05 02:39:13 +03:00
parent 96e8e93c64
commit 55f9ddbeb4
2 changed files with 3 additions and 0 deletions

View File

@ -0,0 +1 @@
4294967291

View File

@ -0,0 +1,2 @@
-- In previous ClickHouse versions, the multiplications was made in a wrong type leading to overflow.
SELECT round(avgWeighted(x, y)) FROM (SELECT 0xFFFFFFFF AS x, 1000000000 AS y UNION ALL SELECT 1 AS x, 1 AS y);