mirror of
https://github.com/postgres/postgres.git
synced 2026-02-18 18:25:17 -05:00
Fix ancient typo in user-defined-aggregates documentation.
The description of the initcond value for the built-in avg(float8) aggregate has been wrong since it was written. Noted by Disc Magnet.
This commit is contained in:
parent
9bb1ddec4c
commit
6d0877fc5e
1 changed files with 1 additions and 1 deletions
|
|
@ -106,7 +106,7 @@ CREATE AGGREGATE avg (float8)
|
|||
sfunc = float8_accum,
|
||||
stype = float8[],
|
||||
finalfunc = float8_avg,
|
||||
initcond = '{0,0}'
|
||||
initcond = '{0,0,0}'
|
||||
);
|
||||
</programlisting>
|
||||
</para>
|
||||
|
|
|
|||
Loading…
Reference in a new issue