Applies NOT to an expression.
(RexNode e)
| 347 | |
| 348 | /** Applies NOT to an expression. */ |
| 349 | RexNode not(RexNode e) { |
| 350 | return RexUtil.not(rexBuilder, e); |
| 351 | } |
| 352 | |
| 353 | /** Applies IS NOT FALSE to an expression. */ |
| 354 | RexNode isNotFalse(RexNode e) { |
no test coverage detected