mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-12 02:23:14 +00:00
1.2 KiB
1.2 KiB
toc_priority |
---|
145 |
sumKahan
Calculates the sum of the numbers with Kahan compensated summation algorithm Slower than sum function. The compensation works only for Float types.
Syntax
sumKahan(x)
Arguments
Returned value
Example
Query:
SELECT sum(0.1), sumKahan(0.1) FROM numbers(10);
Result:
┌───────────sum(0.1)─┬─sumKahan(0.1)─┐
│ 0.9999999999999999 │ 1 │
└────────────────────┴───────────────┘