diff options
author | Alexander Korotkov <akorotkov@postgresql.org> | 2019-07-11 18:18:15 +0300 |
---|---|---|
committer | Alexander Korotkov <akorotkov@postgresql.org> | 2019-07-11 18:20:38 +0300 |
commit | 1ed89826b82c693c311d9974f3f3138013f1b929 (patch) | |
tree | 414282c2ced618646f4dc2ada9da0b1cc7b62ef9 | |
parent | ff597b656febe152b1650fc5619e57fbd1364c2c (diff) | |
download | postgresql-1ed89826b82c693c311d9974f3f3138013f1b929.tar.gz postgresql-1ed89826b82c693c311d9974f3f3138013f1b929.zip |
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
-rw-r--r-- | doc/src/sgml/func.sgml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/src/sgml/func.sgml b/doc/src/sgml/func.sgml index d798f1a8469..8ccb3a5a999 100644 --- a/doc/src/sgml/func.sgml +++ b/doc/src/sgml/func.sgml @@ -11989,14 +11989,14 @@ table2-mapping <entry>Less-than operator</entry> <entry><literal>[1, 2, 3]</literal></entry> <entry><literal>$[*] ? (@ < 2)</literal></entry> - <entry><literal>1, 2</literal></entry> + <entry><literal>1</literal></entry> </row> <row> <entry><literal><=</literal></entry> <entry>Less-than-or-equal-to operator</entry> <entry><literal>[1, 2, 3]</literal></entry> - <entry><literal>$[*] ? (@ < 2)</literal></entry> - <entry><literal>1</literal></entry> + <entry><literal>$[*] ? (@ <= 2)</literal></entry> + <entry><literal>1, 2</literal></entry> </row> <row> <entry><literal>></literal></entry> @@ -12006,7 +12006,7 @@ table2-mapping <entry><literal>3</literal></entry> </row> <row> - <entry><literal>></literal></entry> + <entry><literal>>=</literal></entry> <entry>Greater-than-or-equal-to operator</entry> <entry><literal>[1, 2, 3]</literal></entry> <entry><literal>$[*] ? (@ >= 2)</literal></entry> |