mirror of
https://github.com/postgres/postgres.git
synced 2025-06-06 00:02:36 -04: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
cf73547075
commit
03f957fe1d
@ -106,7 +106,7 @@ CREATE AGGREGATE avg (float8)
|
|||||||
sfunc = float8_accum,
|
sfunc = float8_accum,
|
||||||
stype = float8[],
|
stype = float8[],
|
||||||
finalfunc = float8_avg,
|
finalfunc = float8_avg,
|
||||||
initcond = '{0,0}'
|
initcond = '{0,0,0}'
|
||||||
);
|
);
|
||||||
</programlisting>
|
</programlisting>
|
||||||
</para>
|
</para>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user