From: Alexander Korotkov Date: Thu, 11 Jul 2019 15:18:15 +0000 (+0300) Subject: Fixes for jsonpath filter expression elements table in docs X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0cea6eb5a5f2948c411706cabfde32ce61df0d7a;p=postgresql 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 --- diff --git a/doc/src/sgml/func.sgml b/doc/src/sgml/func.sgml index 789ca630d2..a25c122ac8 100644 --- a/doc/src/sgml/func.sgml +++ b/doc/src/sgml/func.sgml @@ -11965,14 +11965,14 @@ table2-mapping Less-than operator [1, 2, 3] $[*] ? (@ < 2) - 1, 2 + 1 <= Less-than-or-equal-to operator [1, 2, 3] - $[*] ? (@ < 2) - 1 + $[*] ? (@ <= 2) + 1, 2 > @@ -11982,7 +11982,7 @@ table2-mapping 3 - > + >= Greater-than-or-equal-to operator [1, 2, 3] $[*] ? (@ >= 2)