142143144145146147148
protected QueryIterator execute(OpGraph opGraph, QueryIterator input) { QueryIterator qIter = specialcase(opGraph.getNode(), opGraph.getSubOp(), input) ; if ( qIter != null ) return qIter ; return new QueryIterGraph(input, opGraph, execCxt) ; }
160161162163164165166
@Override protected QueryIterator execute(OpGraph opGraph, QueryIterator input) { // Path evaluation or dataset sets which do not go straight to the DatasetGraphTDB return new QueryIterGraph(input, opGraph, execCxt) ; }
298299300301302303304
150151152153154155156
protected QueryIterator execute(OpGraph opGraph, QueryIterator input) { QueryIterator qIter = specialcase(opGraph.getNode(), opGraph.getSubOp(), input) ; if (qIter != null) return qIter ; return new QueryIterGraph(input, opGraph, execCxt) ; }
158159160161162163164