From 2b0412bedb9505a84cf883aa60d135ce5ec02ace Mon Sep 17 00:00:00 2001 From: Gavin King Date: Sun, 25 Jun 2023 16:48:57 +0200 Subject: [PATCH] fix a couple of mistakes in operator precedence list --- .../src/main/asciidoc/querylanguage/Expressions.adoc | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/documentation/src/main/asciidoc/querylanguage/Expressions.adoc b/documentation/src/main/asciidoc/querylanguage/Expressions.adoc index af19844cf063..28f12f922c55 100644 --- a/documentation/src/main/asciidoc/querylanguage/Expressions.adoc +++ b/documentation/src/main/asciidoc/querylanguage/Expressions.adoc @@ -275,10 +275,13 @@ The operator precedence is given by this table, from highest to lowest precedenc | Containment | Binary infix | `in`, `not in` | Between | Ternary infix | `between`, `not between` | Pattern matching | Binary infix | `like`, `ilike`, `not like`, `not ilike` +| Comparison operators | Binary infix | `=`, `<>`, `<`, `>`, `\<=`, `>=` +| Nullsafe comparison | Binary infix | `is distinct from`, `is not distinct from` | Existence | Unary prefix | `exists` | Membership | Binary infix | `member of`, `not member of` -| Unary logical | Unary prefix | `not` -| Binary logical | Binary infix | `and`, `or` +| Logical negation | Unary prefix | `not` +| Logical conjunction | Binary infix | `and` +| Logical disjunction | Binary infix | `or` |=== [[concatenation]]