Unit test for Join.getNext() using an = predicate
()
| 105 | * Unit test for Join.getNext() using an = predicate |
| 106 | */ |
| 107 | @Test public void eqJoin() throws Exception { |
| 108 | JoinPredicate pred = new JoinPredicate(0, Predicate.Op.EQUALS, 0); |
| 109 | Join op = new Join(pred, scan1, scan2); |
| 110 | op.open(); |
| 111 | eqJoin.open(); |
| 112 | TestUtil.matchAllTuples(eqJoin, op); |
| 113 | } |
| 114 | |
| 115 | /** |
| 116 | * JUnit suite target |
nothing calls this directly
no test coverage detected