ClickHouse/tests/queries/0_stateless/01359_codeql.sql
Alexey Milovidov 55f9ddbeb4 Added a test
2020-07-05 02:39:13 +03:00

3 lines
214 B
SQL

-- 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);