mirror of
https://github.com/postgres/postgres.git
synced 2026-03-29 13:53:46 -04:00
Documentation fix: sum(float4) returns float4, not float8.
The old claim is from my commit d06ebdb8d3 of
2000-07-17, but it seems to have been a plain old thinko; sum(float4) has
been distinct from sum(float8) since Berkeley days. Noted by KaiGai Kohei.
While at it, mention the existence of sum(money), which is also of
embarrassingly ancient vintage.
This commit is contained in:
parent
4231599328
commit
b1a7c9e387
1 changed files with 3 additions and 4 deletions
|
|
@ -12246,14 +12246,13 @@ NULL baz</literallayout>(3 rows)</entry>
|
|||
<entry>
|
||||
<type>smallint</type>, <type>int</type>,
|
||||
<type>bigint</type>, <type>real</type>, <type>double
|
||||
precision</type>, <type>numeric</type>, or
|
||||
<type>interval</type>
|
||||
precision</type>, <type>numeric</type>,
|
||||
<type>interval</type>, or <type>money</>
|
||||
</entry>
|
||||
<entry>
|
||||
<type>bigint</type> for <type>smallint</type> or
|
||||
<type>int</type> arguments, <type>numeric</type> for
|
||||
<type>bigint</type> arguments, <type>double precision</type>
|
||||
for floating-point arguments, otherwise the same as the
|
||||
<type>bigint</type> arguments, otherwise the same as the
|
||||
argument data type
|
||||
</entry>
|
||||
<entry>sum of <replaceable class="parameter">expression</replaceable> across all input values</entry>
|
||||
|
|
|
|||
Loading…
Reference in a new issue