From 1ed89826b82c693c311d9974f3f3138013f1b929 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 d798f1a846..8ccb3a5a99 100644 --- a/doc/src/sgml/func.sgml +++ b/doc/src/sgml/func.sgml @@ -11989,14 +11989,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 > @@ -12006,7 +12006,7 @@ table2-mapping 3 - > + >= Greater-than-or-equal-to operator [1, 2, 3] $[*] ? (@ >= 2)