| 117 | } |
| 118 | |
| 119 | static public class CountProjectionQuery implements IQuerySchema { |
| 120 | public int[] projectionTriple; |
| 121 | public List<int[]> otherTriples; |
| 122 | |
| 123 | public CountProjectionQuery(int[] projectionTriple, List<int[]> otherTriples) { |
| 124 | this.projectionTriple = projectionTriple; |
| 125 | this.otherTriples = otherTriples; |
| 126 | } |
| 127 | } |
| 128 | |
| 129 | static public class CountDistinctQuery implements IQuerySchema { |
| 130 | public int variable; |
nothing calls this directly
no outgoing calls
no test coverage detected