Commit f9e4961b authored by Peter Eisentraut's avatar Peter Eisentraut

Improve array_upper example

The previous example didn't make it clear whether array_upper returned
the last element or the index of the last element.
parent 6c596c29
......@@ -10361,7 +10361,7 @@ SELECT NULLIF(value, '(none)') ...
</entry>
<entry><type>int</type></entry>
<entry>returns upper bound of the requested array dimension</entry>
<entry><literal>array_upper(ARRAY[1,2,3,4], 1)</literal></entry>
<entry><literal>array_upper(ARRAY[1,8,3,7], 1)</literal></entry>
<entry><literal>4</literal></entry>
</row>
<row>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment