()
| 46 | } |
| 47 | |
| 48 | public void open() throws DbException, NoSuchElementException, |
| 49 | TransactionAbortedException { |
| 50 | // some code goes here |
| 51 | child.open(); |
| 52 | while(child.hasNext()){ |
| 53 | Tuple next = child.next(); |
| 54 | if(predicate.filter(next)){ |
| 55 | childTuple.add(next); |
| 56 | } |
| 57 | } |
| 58 | it = childTuple.iterator(); |
| 59 | super.open(); |
| 60 | } |
| 61 | |
| 62 | public void close() { |
| 63 | // some code goes here |