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:
SeKing 2019-09-05 12:27:18 +08:00 committed by Clint Wylie
parent bfb02f09f8
commit 6a6893b406
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ This expression language supports the following operators (listed in decreasing
|*, /, %|Binary multiplicative|
|+, -|Binary additive|
|<, <=, >, >=, ==, !=|Binary Comparison|
|&&, &#124;|Binary Logical AND, OR|
|&&, &#124;&#124;|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.