The FILTER-ROW-IF-TRUE directive filters records that match a condition.
Deprecated
Use the FILTER-ROWS-ON directive instead.
Syntax
Code Block |
---|
filter-row-if-true <condition> |
The <condition>
is a valid boolean expression resulting in either a true
or false
.
Usage Notes
The FILTER-ROW-IF-TRUE directive evaluates the Boolean condition for each record. If the result of evaluation is true
, it skips the record, otherwise it is passed as-is to the input of the next directive.
...
For information on how to write JEXL expressions, see the commons-jexl documentation.
Examples
Using this record as an example:
...