Commit 0cea6eb5 authored by Alexander Korotkov's avatar Alexander Korotkov

Fixes for jsonpath filter expression elements table in docs

Reported-by: Thom Brown
Discussion: https://postgr.es/m/CAA-aLv4Tggy6Z3kaG9n%2B3SHwOVGN2Yj_MJXfdfwjH_jBNZzJNA%40mail.gmail.com
Backpatch-through: 12
parent b5810de3
......@@ -11965,14 +11965,14 @@ table2-mapping
<entry>Less-than operator</entry>
<entry><literal>[1, 2, 3]</literal></entry>
<entry><literal>$[*] ? (@ &lt; 2)</literal></entry>
<entry><literal>1, 2</literal></entry>
<entry><literal>1</literal></entry>
</row>
<row>
<entry><literal>&lt;=</literal></entry>
<entry>Less-than-or-equal-to operator</entry>
<entry><literal>[1, 2, 3]</literal></entry>
<entry><literal>$[*] ? (@ &lt; 2)</literal></entry>
<entry><literal>1</literal></entry>
<entry><literal>$[*] ? (@ &lt;= 2)</literal></entry>
<entry><literal>1, 2</literal></entry>
</row>
<row>
<entry><literal>&gt;</literal></entry>
......@@ -11982,7 +11982,7 @@ table2-mapping
<entry><literal>3</literal></entry>
</row>
<row>
<entry><literal>&gt;</literal></entry>
<entry><literal>&gt;=</literal></entry>
<entry>Greater-than-or-equal-to operator</entry>
<entry><literal>[1, 2, 3]</literal></entry>
<entry><literal>$[*] ? (@ &gt;= 2)</literal></entry>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment