@@ -11933,18 +11933,18 @@ table2-mapping
11933
11933
<entry><literal>[{"f1":1},2,null,3]</literal></entry>
11934
11934
</row>
11935
11935
<row>
11936
- <entry><para><literal>jsonb_set(target jsonb, path text[], new_value jsonb<optional>,<parameter> create_missing</parameter> <type> boolean</type> </optional>)</literal>
11936
+ <entry><para><literal>jsonb_set(target jsonb, path text[], new_value jsonb <optional>, create_missing boolean</optional>)</literal>
11937
11937
</para></entry>
11938
11938
<entry><para><type>jsonb</type></para></entry>
11939
11939
<entry>
11940
11940
Returns <replaceable>target</replaceable>
11941
11941
with the section designated by <replaceable>path</replaceable>
11942
11942
replaced by <replaceable>new_value</replaceable>, or with
11943
11943
<replaceable>new_value</replaceable> added if
11944
- <replaceable>create_missing</replaceable> is true ( default is
11944
+ <replaceable>create_missing</replaceable> is true (default is
11945
11945
<literal>true</literal>) and the item
11946
11946
designated by <replaceable>path</replaceable> does not exist.
11947
- As with the pathorientated operators, negative integers that
11947
+ As with the pathoriented operators, negative integers that
11948
11948
appear in <replaceable>path</replaceable> count from the end
11949
11949
of JSON arrays.
11950
11950
</entry>
@@ -11958,7 +11958,7 @@ table2-mapping
11958
11958
<row>
11959
11959
<entry>
11960
11960
<para><literal>
11961
- jsonb_insert(target jsonb, path text[], new_value jsonb, <optional><parameter> insert_after</parameter> <type> boolean</type> </optional>)
11961
+ jsonb_insert(target jsonb, path text[], new_value jsonb <optional>, insert_after boolean</optional>)
11962
11962
</literal></para>
11963
11963
</entry>
11964
11964
<entry><para><type>jsonb</type></para></entry>
@@ -11973,7 +11973,7 @@ table2-mapping
11973
11973
designated by <replaceable>path</replaceable> is in JSONB object,
11974
11974
<replaceable>new_value</replaceable> will be inserted only if
11975
11975
<replaceable>target</replaceable> does not exist. As with the path
11976
- orientated operators, negative integers that appear in
11976
+ oriented operators, negative integers that appear in
11977
11977
<replaceable>path</replaceable> count from the end of JSON arrays.
11978
11978
</entry>
11979
11979
<entry>