mirror of
https://github.com/postgres/postgres.git
synced 2025-09-02 04:21:28 +03:00
Fix documented return type of json_array_elements_text.
Per gripe from hubert depesz lubaczewski. Also improve examples for this and json_array_elements so they match the example results.
This commit is contained in:
@@ -10282,7 +10282,7 @@ table2-mapping
|
||||
<entry>
|
||||
Expands a JSON array to a set of JSON values.
|
||||
</entry>
|
||||
<entry><literal>json_array_elements('[1,true, [2,false]]')</literal></entry>
|
||||
<entry><literal>SELECT * FROM json_array_elements('[1,true, [2,false]]')</literal></entry>
|
||||
<entry>
|
||||
<programlisting>
|
||||
value
|
||||
@@ -10300,11 +10300,11 @@ table2-mapping
|
||||
</indexterm>
|
||||
<literal>json_array_elements_text(json)</literal>
|
||||
</entry>
|
||||
<entry><type>SETOF json</type></entry>
|
||||
<entry><type>SETOF text</type></entry>
|
||||
<entry>
|
||||
Expands a JSON array to a set of text values.
|
||||
</entry>
|
||||
<entry><literal>json_array_elements_text('["foo", "bar"]')</literal></entry>
|
||||
<entry><literal>SELECT * FROM json_array_elements_text('["foo", "bar"]')</literal></entry>
|
||||
<entry>
|
||||
<programlisting>
|
||||
value
|
||||
|
Reference in New Issue
Block a user