Revision 34672cbb
ID | 34672cbb1feb1cea1d4a92fbd811cf365a51fb37 |
Parent | ed745428 |
Child | 12dec15b |
bug #4637: Adds > operator for boolean expresions.
> evaluates to
true if the value is included in a result array. An array of attributes
is obtained for multiple values xpath, e.g.
<CLUSTER>
<ID>100</ID>
<ID>101</ID>
</CLUSTER>
an expresion of the form CLUSTER/ID in a requirement returns [100, 101].
To test if a given element is in a datastore:
CLUSTER/ID > 101 -----> [100, 101]
> 101 ---> true
Note that CLUSTER/ID = 101 only evaluates the first element found
CLUSTER/ID = 101 ----> 100 = 101 ----> false
(cherry picked from commit eed6b268adcb70660b0a5251c2d434b591c7bd8b)
Files
- added
- modified
- copied
- renamed
- deleted