mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-22 04:45:37 +00:00
To avoid having to specify each spec by hand (which can miss specs to be added), the test infrastructure now performs classpath discovery so that each spec added, is automatically considered. Relates #40358 (cherry picked from commit d0f60b4425c731509aa8ca765d55f563f866ef90)
147 lines
4.8 KiB
Plaintext
147 lines
4.8 KiB
Plaintext
[role="xpack"]
|
|
[testenv="basic"]
|
|
[[sql-operators]]
|
|
=== Comparison Operators
|
|
|
|
Boolean operator for comparing against one or multiple expressions.
|
|
|
|
* Equality (`=`)
|
|
|
|
["source","sql",subs="attributes,callouts,macros"]
|
|
--------------------------------------------------
|
|
include-tagged::{sql-specs}/filter.sql-spec[whereFieldEquality]
|
|
--------------------------------------------------
|
|
|
|
* Null safe Equality (`<=>`)
|
|
|
|
["source","sql",subs="attributes,callouts,macros"]
|
|
--------------------------------------------------
|
|
include-tagged::{sql-specs}/docs/docs.csv-spec[nullEqualsCompareWithNull]
|
|
--------------------------------------------------
|
|
|
|
["source","sql",subs="attributes,callouts,macros"]
|
|
--------------------------------------------------
|
|
include-tagged::{sql-specs}/docs/docs.csv-spec[nullEqualsCompareTwoNulls]
|
|
--------------------------------------------------
|
|
|
|
* Inequality (`<>` or `!=`)
|
|
|
|
["source","sql",subs="attributes,callouts,macros"]
|
|
--------------------------------------------------
|
|
include-tagged::{sql-specs}/filter.sql-spec[whereFieldNonEquality]
|
|
--------------------------------------------------
|
|
|
|
* Comparison (`<`, `<=`, `>`, `>=`)
|
|
|
|
["source","sql",subs="attributes,callouts,macros"]
|
|
--------------------------------------------------
|
|
include-tagged::{sql-specs}/filter.sql-spec[whereFieldLessThan]
|
|
--------------------------------------------------
|
|
|
|
* `BETWEEN`
|
|
|
|
["source","sql",subs="attributes,callouts,macros"]
|
|
--------------------------------------------------
|
|
include-tagged::{sql-specs}/filter.sql-spec[whereBetween]
|
|
--------------------------------------------------
|
|
|
|
* `IS NULL/IS NOT NULL`
|
|
|
|
["source","sql",subs="attributes,callouts,macros"]
|
|
--------------------------------------------------
|
|
include-tagged::{sql-specs}/filter.sql-spec[whereIsNotNullAndIsNull]
|
|
--------------------------------------------------
|
|
|
|
* `IN (<value1>, <value2>, ...)`
|
|
|
|
["source","sql",subs="attributes,callouts,macros"]
|
|
--------------------------------------------------
|
|
include-tagged::{sql-specs}/filter.sql-spec[whereWithInAndMultipleValues]
|
|
--------------------------------------------------
|
|
|
|
[[sql-operators-logical]]
|
|
=== Logical Operators
|
|
|
|
Boolean operator for evaluating one or two expressions.
|
|
|
|
* `AND`
|
|
|
|
["source","sql",subs="attributes,callouts,macros"]
|
|
--------------------------------------------------
|
|
include-tagged::{sql-specs}/filter.sql-spec[whereFieldAndComparison]
|
|
--------------------------------------------------
|
|
|
|
* `OR`
|
|
|
|
["source","sql",subs="attributes,callouts,macros"]
|
|
--------------------------------------------------
|
|
include-tagged::{sql-specs}/filter.sql-spec[whereFieldOrComparison]
|
|
--------------------------------------------------
|
|
|
|
* `NOT`
|
|
|
|
["source","sql",subs="attributes,callouts,macros"]
|
|
--------------------------------------------------
|
|
include-tagged::{sql-specs}/filter.sql-spec[whereFieldEqualityNot]
|
|
--------------------------------------------------
|
|
|
|
[[sql-operators-math]]
|
|
=== Math Operators
|
|
|
|
Perform mathematical operations affecting one or two values.
|
|
The result is a value of numeric type.
|
|
|
|
* Add (`+`)
|
|
|
|
["source","sql",subs="attributes,callouts,macros"]
|
|
--------------------------------------------------
|
|
include-tagged::{sql-specs}/arithmetic.sql-spec[plus]
|
|
--------------------------------------------------
|
|
|
|
* Subtract (infix `-`)
|
|
|
|
["source","sql",subs="attributes,callouts,macros"]
|
|
--------------------------------------------------
|
|
include-tagged::{sql-specs}/arithmetic.sql-spec[minus]
|
|
--------------------------------------------------
|
|
|
|
* Negate (unary `-`)
|
|
|
|
["source","sql",subs="attributes,callouts,macros"]
|
|
--------------------------------------------------
|
|
include-tagged::{sql-specs}/arithmetic.sql-spec[unaryMinus]
|
|
--------------------------------------------------
|
|
|
|
* Multiply (`*`)
|
|
|
|
["source","sql",subs="attributes,callouts,macros"]
|
|
--------------------------------------------------
|
|
include-tagged::{sql-specs}/arithmetic.sql-spec[multiply]
|
|
--------------------------------------------------
|
|
|
|
* Divide (`/`)
|
|
|
|
["source","sql",subs="attributes,callouts,macros"]
|
|
--------------------------------------------------
|
|
include-tagged::{sql-specs}/arithmetic.sql-spec[divide]
|
|
--------------------------------------------------
|
|
|
|
* https://en.wikipedia.org/wiki/Modulo_operation[Modulo] or Remainder(`%`)
|
|
|
|
["source","sql",subs="attributes,callouts,macros"]
|
|
--------------------------------------------------
|
|
include-tagged::{sql-specs}/arithmetic.sql-spec[mod]
|
|
--------------------------------------------------
|
|
|
|
[[sql-operators-cast]]
|
|
=== Cast Operators
|
|
|
|
* Cast (`::`)
|
|
|
|
`::` provides an alternative syntax to the <<sql-functions-type-conversion-cast>> function.
|
|
|
|
["source","sql",subs="attributes,callouts,macros"]
|
|
--------------------------------------------------
|
|
include-tagged::{sql-specs}/docs/docs.csv-spec[conversionStringToLongCastOperator]
|
|
--------------------------------------------------
|