projects
/
postgresql
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9bb1dde
)
Fix ancient typo in user-defined-aggregates documentation.
author
Tom Lane
<tgl@sss.pgh.pa.us>
Wed, 23 Mar 2011 16:33:14 +0000
(12:33 -0400)
committer
Tom 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
patch
|
blob
|
history
diff --git
a/doc/src/sgml/xaggr.sgml
b/doc/src/sgml/xaggr.sgml
index 6f6f095067933cf1138bd06c36c19c393958d9e1..d46482509b40b34e82346708159e5b24499b82ec 100644
(file)
--- a/
doc/src/sgml/xaggr.sgml
+++ b/
doc/src/sgml/xaggr.sgml
@@
-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>