@@ -10160,8 +10160,8 @@ table2-mapping
10160
10160
</note>
10161
10161
<para>
10162
10162
The standard comparison operators shown in <xref
10163
- linkend="functions-comparison-table"> are available for
10164
- <type>jsonb</type>, but not for <type>json</type>. They follow the
10163
+ linkend="functions-comparison-table"> are available for
10164
+ <type>jsonb</type>, but not for <type>json</type>. They follow the
10165
10165
ordering rules for btree operations outlined at <xref
10166
10166
linkend="json-indexing">.
10167
10167
</para>
@@ -10668,9 +10668,9 @@ table2-mapping
10668
10668
<entry><literal>select * from json_to_record('{"a":1,"b":[1,2,3],"c":"bar"}') as x(a int, b text, d text) </literal></entry>
10669
10669
<entry>
10670
10670
<programlisting>
10671
- a | b | d
10671
+ a | b | d
10672
10672
---+---------+---
10673
- 1 | [1,2,3] |
10673
+ 1 | [1,2,3] |
10674
10674
</programlisting>
10675
10675
</entry>
10676
10676
</row>
@@ -14006,7 +14006,7 @@ AND
14006
14006
<literal>*>=</>.
14007
14007
These operators compare the internal binary representation of the two
14008
14008
rows. Two rows might have a different binary representation even
14009
- though comparisons of the two rows with the equality operator is true.
14009
+ though comparisons of the two rows with the equality operator is true.
14010
14010
The ordering of rows under these comparision operators is deterministic
14011
14011
but not otherwise meaningful. These operators are used internally for
14012
14012
materialized views and might be useful for other specialized purposes