@@ -10141,7 +10141,7 @@ table2-mapping
10141
10141
Expands the object in <replaceable>from_json</replaceable> to a row whose columns match
10142
10142
the record type defined by base. Conversion will be best
10143
10143
effort; columns in base with no corresponding key in <replaceable>from_json</replaceable>
10144
- will be left null. A columnmay only be specified once.
10144
+ will be left null.If a columnis specified more than once, the last value is used .
10145
10145
</entry>
10146
10146
<entry><literal>select * from json_populate_record(null::x, '{"a":1,"b":2}')</literal></entry>
10147
10147
<entry>
@@ -10164,8 +10164,8 @@ table2-mapping
10164
10164
Expands the outermost set of objects in <replaceable>from_json</replaceable> to a set
10165
10165
whose columns match the record type defined by base.
10166
10166
Conversion will be best effort; columns in base with no
10167
- corresponding key in <replaceable>from_json</replaceable> will be left null. A column
10168
- may only be specified once.
10167
+ corresponding key in <replaceable>from_json</replaceable> will be left null.
10168
+ If a column is specifiedmore than once, the last value is used .
10169
10169
</entry>
10170
10170
<entry><literal>select * from json_populate_recordset(null::x, '[{"a":1,"b":2},{"a":3,"b":4}]')</literal></entry>
10171
10171
<entry>