From 0cea6eb5a5f2948c411706cabfde32ce61df0d7a Mon Sep 17 00:00:00 2001 From: Alexander Korotkov Date: Thu, 11 Jul 2019 18:18:15 +0300 Subject: [PATCH] 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 --- doc/src/sgml/func.sgml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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) -- 2.40.0