Re: [HACKERS] Sum aggregate calculation for single precsion real
От | Tom Lane |
---|---|
Тема | Re: [HACKERS] Sum aggregate calculation for single precsion real |
Дата | |
Msg-id | 11161.1487002849@sss.pgh.pa.us обсуждение исходный текст |
Ответ на | [HACKERS] Sum aggregate calculation for single precsion real (Konstantin Knizhnik <k.knizhnik@postgrespro.ru>) |
Ответы |
Re: [HACKERS] Sum aggregate calculation for single precsion real
|
Список | pgsql-hackers |
Konstantin Knizhnik <k.knizhnik@postgrespro.ru> writes: > I wonder why SUM aggregate is calculated for real (float4) type using > floating point accumulator? If you can't deal with the vagaries of floating-point arithmetic, you shouldn't be storing your data in float format. Use numeric. > Are there are reasons of using float4pl function for SUM aggregate instead of float4_accum? The latter is probably a good two orders of magnitude slower, and it wouldn't really do much to solve the inherent accuracy problems of adding float4 values that have a wide dynamic range. The expectation for SUM(float4) is that you want speed and are prepared to cope with the consequences. It's easy enough to cast your input to float8 if you want a wider accumulator, or to numeric if you'd like more stable (not necessarily more accurate :-() results. I do not think it's the database's job to make those choices for you. regards, tom lane
В списке pgsql-hackers по дате отправления: