OSDN Git Service

Fix ancient typo in user-defined-aggregates documentation.
authorTom Lane <tgl@sss.pgh.pa.us>
Wed, 23 Mar 2011 16:33:14 +0000 (12:33 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Wed, 23 Mar 2011 16:33:40 +0000 (12:33 -0400)
The description of the initcond value for the built-in avg(float8)
aggregate has been wrong since it was written.  Noted by Disc Magnet.

doc/src/sgml/xaggr.sgml

index 6f6f095..d464825 100644 (file)
@@ -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>