Package | Description |
---|---|
com.hazelcast.query.impl.predicates |
Modifier and Type | Class and Description |
---|---|
class |
BetweenVisitor
Replaces expression from (age >= X and age <= Y) into (age between X Y)
It detects some predicates which are trivally false.
|
class |
FlatteningVisitor
Rewrites predicates:
1.
|
class |
OrToInVisitor
Transforms predicate (attribute = 1 or attribute = 2 or attribute = 3) into
(attribute in (1, 2, 3)
InPredicate is easier to evaluate in both indexed and non-indexed scenarios.
|
Copyright © 2016 Hazelcast, Inc.. All Rights Reserved.