From: Bruce Momjian Date: Sun, 10 Nov 2002 00:32:16 +0000 (+0000) Subject: Add documentation for array_upper/lower(). X-Git-Tag: REL7_4_BETA1~1597 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=50e726a2c34523c120486a7c679c2b6d49233973;p=thirdparty%2Fpostgresql.git Add documentation for array_upper/lower(). --- diff --git a/doc/src/sgml/array.sgml b/doc/src/sgml/array.sgml index deca39f0ae2..dc2b08161ee 100644 --- a/doc/src/sgml/array.sgml +++ b/doc/src/sgml/array.sgml @@ -1,4 +1,4 @@ - + Arrays @@ -195,7 +195,9 @@ SELECT array_dims(schedule) FROM sal_emp WHERE name = 'Carol'; array_dims produces a text result, which is convenient for people to read but perhaps not so convenient - for programs. + for programs. array_upper and + array_lower return the upper/lower bound of the + given array dimension, respectively.