#1611 - ENH: Add inRange expression (as half open expression) ... (property >= lowerValue and property < upperValue)

Add inrange to EQL grammer
This commit is contained in:
rob bygrave
2019-01-21 20:28:38 +13:00
parent 471691c747
commit 0cb8bb0415
13 changed files with 4338 additions and 4734 deletions
@@ -41,6 +41,7 @@ class OperatorMapping {
map.put("iendsWith", EqlOperator.IENDS_WITH);
map.put("ilike", EqlOperator.ILIKE);
map.put("inrange", EqlOperator.INRANGE);
map.put("between", EqlOperator.BETWEEN);
}