v.1.1.54337New Feature
Added sumKahan Aggregate Function
Added the sumKahan aggregate function.Why it matters
The sumKahan function was created to solve the problem of floating-point precision loss when summing large datasets. It improves accuracy by compensating for small errors that accumulate in standard summation, providing more reliable and precise aggregated results for analytic queries.How to use it
Use the sumKahan aggregate function in SQL queries similar to other aggregate functions. For example:SELECT sumKahan(column_name) FROM table_nameThis will return the sum of the specified column with improved numerical stability.