Commit 278edd9e authored by Bruce Momjian's avatar Bruce Momjian

doc: update NUMERIC to state that only some ops are exact

Report by Tom Lane
parent 1d8198bb
...@@ -498,11 +498,13 @@ ...@@ -498,11 +498,13 @@
<para> <para>
The type <type>numeric</type> can store numbers with a The type <type>numeric</type> can store numbers with a
very large number of digits and perform calculations exactly. It is very large number of digits. It is especially recommended for
especially recommended for storing monetary amounts and other storing monetary amounts and other quantities where exactness is
quantities where exactness is required. However, arithmetic on required. Calculations with <type>numeric</type> values yield exact
<type>numeric</type> values is very slow compared to the integer results where possible, e.g. addition, subtraction, multiplication.
types, or to the floating-point types described in the next section. However, calculations on <type>numeric</type> values are very slow
compared to the integer types, or to the floating-point types
described in the next section.
</para> </para>
<para> <para>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment