Method
test
(final QueryContext qc, final InputInfo ii, final long pos)
Source from the content-addressed store, hash-verified
| 56 | } |
| 57 | |
| 58 | @Override |
| 59 | public final boolean test(final QueryContext qc, final InputInfo ii, final long pos) |
| 60 | throws QueryException { |
| 61 | final boolean or = or(); |
| 62 | for(final Expr expr : exprs) { |
| 63 | if(expr.test(qc, info, 0) == or) return or; |
| 64 | } |
| 65 | return !or; |
| 66 | } |
| 67 | |
| 68 | @Override |
| 69 | public final boolean indexAccessible(final IndexInfo ii) throws QueryException { |
Tested by
no test coverage detected