mirror of https://github.com/apache/druid.git
Fix operator mistake of expression OR (#8452)
* Add realization for updating version of derived segments in MaterializedView * add unit test, and change code style for the sake of ease of understanding * fix document's mistake of expression
This commit is contained in:
parent
bfb02f09f8
commit
6a6893b406
|
@ -35,7 +35,7 @@ This expression language supports the following operators (listed in decreasing
|
|||
|*, /, %|Binary multiplicative|
|
||||
|+, -|Binary additive|
|
||||
|<, <=, >, >=, ==, !=|Binary Comparison|
|
||||
|&&, ||Binary Logical AND, OR|
|
||||
|&&, |||Binary Logical AND, OR|
|
||||
|
||||
Long, double, and string data types are supported. If a number contains a dot, it is interpreted as a double, otherwise
|
||||
it is interpreted as a long. That means, always add a '.' to your number if you want it interpreted as a double value.
|
||||
|
|
Loading…
Reference in New Issue