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:21 +0300 |
commit | 0cea6eb5a5f2948c411706cabfde32ce61df0d7a (patch) | |
tree | 0df295bbd67c0b016ff0e50136d7dbad2fad1bc4 /doc/src | |
parent | b5810de3f4eb0e7b242d31db93a46957d56ea8b4 (diff) | |
download | postgresql-0cea6eb5a5f2948c411706cabfde32ce61df0d7a.tar.gz postgresql-0cea6eb5a5f2948c411706cabfde32ce61df0d7a.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
Diffstat (limited to 'doc/src')
-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 789ca630d2c..a25c122ac8f 100644 --- a/doc/src/sgml/func.sgml +++ b/doc/src/sgml/func.sgml @@ -11965,14 +11965,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> @@ -11982,7 +11982,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> |