Yingyi Bu has submitted this change and it was merged. Change subject: Minor fix in the expression doc. ......................................................................
Minor fix in the expression doc. Change-Id: Ic742fb1f7459649725b33ea819b0a6d82907cb0a Reviewed-on: https://asterix-gerrit.ics.uci.edu/1244 Reviewed-by: Till Westmann <[email protected]> Sonar-Qube: Jenkins <[email protected]> Tested-by: Jenkins <[email protected]> --- M asterixdb/asterix-doc/src/main/markdown/sqlpp/2_expr.md 1 file changed, 2 insertions(+), 2 deletions(-) Approvals: Till Westmann: Looks good to me, approved Jenkins: Verified; No violations found diff --git a/asterixdb/asterix-doc/src/main/markdown/sqlpp/2_expr.md b/asterixdb/asterix-doc/src/main/markdown/sqlpp/2_expr.md index 732daa4..7641b92 100644 --- a/asterixdb/asterix-doc/src/main/markdown/sqlpp/2_expr.md +++ b/asterixdb/asterix-doc/src/main/markdown/sqlpp/2_expr.md @@ -173,7 +173,7 @@ | ^ | exponentiation | | *, / | multiplication, division | | +, - | addition, subtraction | -| || | string concatenation | +| || | string concatenation | | IS NULL, IS NOT NULL, IS MISSING, IS NOT MISSING, <br/>IS UNKNOWN, IS NOT UNKNOWN| unknown value comparison | | BETWEEN, NOT BETWEEN | range comparison (inclusive on both sides) | | =, !=, <, >, <=, >=, LIKE, NOT LIKE, IN, NOT IN | comparison | @@ -293,7 +293,7 @@ ### <a id="Quantified_expressions">Quantified expressions</a> - QuantifiedExpression ::= ( <SOME> | <EVERY> ) Variable <IN> Expression ( "," Variable "in" Expression )* + QuantifiedExpression ::= ( (<ANY>|<SOME>) | <EVERY> ) Variable <IN> Expression ( "," Variable "in" Expression )* <SATISFIES> Expression Quantified expressions are used for expressing existential or universal predicates involving the elements of a collection. -- To view, visit https://asterix-gerrit.ics.uci.edu/1244 To unsubscribe, visit https://asterix-gerrit.ics.uci.edu/settings Gerrit-MessageType: merged Gerrit-Change-Id: Ic742fb1f7459649725b33ea819b0a6d82907cb0a Gerrit-PatchSet: 2 Gerrit-Project: asterixdb Gerrit-Branch: master Gerrit-Owner: Yingyi Bu <[email protected]> Gerrit-Reviewer: Jenkins <[email protected]> Gerrit-Reviewer: Michael Blow <[email protected]> Gerrit-Reviewer: Till Westmann <[email protected]> Gerrit-Reviewer: Yingyi Bu <[email protected]> Gerrit-Reviewer: abdullah alamoudi <[email protected]>
