Unit test for Join.getNext() using a > predicate
()
| 94 | * Unit test for Join.getNext() using a > predicate |
| 95 | */ |
| 96 | @Test public void gtJoin() throws Exception { |
| 97 | JoinPredicate pred = new JoinPredicate(0, Predicate.Op.GREATER_THAN, 0); |
| 98 | Join op = new Join(pred, scan1, scan2); |
| 99 | op.open(); |
| 100 | gtJoin.open(); |
| 101 | TestUtil.matchAllTuples(gtJoin, op); |
| 102 | } |
| 103 | |
| 104 | /** |
| 105 | * Unit test for Join.getNext() using an = predicate |
nothing calls this directly
no test coverage detected