[#5939] Added rounding error disclaimer

This commit is contained in:
Lukas Eder 2018-09-20 19:32:04 +02:00
parent 97d652e08b
commit 4eab72067e

View File

@ -17367,6 +17367,9 @@ public class DSL {
* emulates this using <code>exp(sum(log(arg)))</code> for strictly positive
* numbers, and does some additional handling for zero and negative numbers.
* <p>
* Note that this implementation may introduce rounding errors, even for
* integer multiplication.
* <p>
* More information here: <a href=
* "https://blog.jooq.org/2018/09/21/how-to-write-a-multiplication-aggregate-function-in-sql">https://blog.jooq.org/2018/09/21/how-to-write-a-multiplication-aggregate-function-in-sql</a>.
*/
@ -17382,6 +17385,9 @@ public class DSL {
* emulates this using <code>exp(sum(log(arg)))</code> for strictly positive
* numbers, and does some additional handling for zero and negative numbers.
* <p>
* Note that this implementation may introduce rounding errors, even for
* integer multiplication.
* <p>
* More information here: <a href=
* "https://blog.jooq.org/2018/09/21/how-to-write-a-multiplication-aggregate-function-in-sql">https://blog.jooq.org/2018/09/21/how-to-write-a-multiplication-aggregate-function-in-sql</a>.
*/