Fixes for jsonpath filter expression elements table in docs
authorAlexander Korotkov
Thu, 11 Jul 2019 15:18:15 +0000 (18:18 +0300)
committerAlexander Korotkov
Thu, 11 Jul 2019 15:20:38 +0000 (18:20 +0300)
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

index d798f1a84698805605e6120faf10518c9796705f..8ccb3a5a999ee1a135fd7b1b99332a6e8ceb88cc 100644 (file)
@@ -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)