diff --git a/doc/src/sgml/func.sgml b/doc/src/sgml/func.sgml
index fd8f237af22..1dbc7d64101 100644
--- a/doc/src/sgml/func.sgml
+++ b/doc/src/sgml/func.sgml
@@ -12343,9 +12343,9 @@ SELECT xmlagg(x) FROM (SELECT x FROM test ORDER BY y DESC) AS tab;
lag
- lag(value any>
+ lag(value anyelement>
[, offset integer>
- [, default any> ]])
+ [, default anyelement> ]])
@@ -12355,7 +12355,9 @@ SELECT xmlagg(x) FROM (SELECT x FROM test ORDER BY y DESC) AS tab;
returns value evaluated at
the row that is offset
rows before the current row within the partition; if there is no such
- row, instead return default.
+ row, instead return default
+ (which must be of the same type as
+ value).
Both offset and
default are evaluated
with respect to the current row. If omitted,
@@ -12370,9 +12372,9 @@ SELECT xmlagg(x) FROM (SELECT x FROM test ORDER BY y DESC) AS tab;
lead
- lead(value any>
+ lead(value anyelement>
[, offset integer>
- [, default any> ]])
+ [, default anyelement> ]])
@@ -12382,7 +12384,9 @@ SELECT xmlagg(x) FROM (SELECT x FROM test ORDER BY y DESC) AS tab;
returns value evaluated at
the row that is offset
rows after the current row within the partition; if there is no such
- row, instead return default.
+ row, instead return default
+ (which must be of the same type as
+ value).
Both offset and
default are evaluated
with respect to the current row. If omitted,