| 127 | } |
| 128 | |
| 129 | static public class CountDistinctQuery implements IQuerySchema { |
| 130 | public int variable; |
| 131 | public List<int[]> query; |
| 132 | |
| 133 | public CountDistinctQuery(int variable, List<int[]> query) { |
| 134 | this.variable = variable; |
| 135 | this.query = query; |
| 136 | } |
| 137 | } |
| 138 | |
| 139 | static public class CountDistinctPairsQuery implements IQuerySchema { |
| 140 | public int var1; |
nothing calls this directly
no outgoing calls
no test coverage detected