@@ -10088,7 +10088,7 @@ table2-mapping
10088
10088
Expands the object in <replaceable>from_json</replaceable> to a row whose columns match
10089
10089
the record type defined by base. Conversion will be best
10090
10090
effort; columns in base with no corresponding key in <replaceable>from_json</replaceable>
10091
- will be left null. A columnmay only be specified once.
10091
+ will be left null.If a columnis specified more than once, the last value is used .
10092
10092
</entry>
10093
10093
<entry><literal>select * from json_populate_record(null::x, '{"a":1,"b":2}')</literal></entry>
10094
10094
<entry>
@@ -10111,8 +10111,8 @@ table2-mapping
10111
10111
Expands the outermost set of objects in <replaceable>from_json</replaceable> to a set
10112
10112
whose columns match the record type defined by base.
10113
10113
Conversion will be best effort; columns in base with no
10114
- corresponding key in <replaceable>from_json</replaceable> will be left null. A column
10115
- may only be specified once.
10114
+ corresponding key in <replaceable>from_json</replaceable> will be left null.
10115
+ If a column is specifiedmore than once, the last value is used .
10116
10116
</entry>
10117
10117
<entry><literal>select * from json_populate_recordset(null::x, '[{"a":1,"b":2},{"a":3,"b":4}]')</literal></entry>
10118
10118
<entry>