| 150 | |
| 151 | |
| 152 | static public class SelectDistinctQuery implements IQuerySchema { |
| 153 | |
| 154 | public int variable; |
| 155 | public List<int[]> query; |
| 156 | |
| 157 | public SelectDistinctQuery(int variable, List<int[]> query) { |
| 158 | this.variable = variable; |
| 159 | this.query = query; |
| 160 | } |
| 161 | } |
| 162 | |
| 163 | static public class CountDistinctPairsUpToQuery implements IQuerySchema { |
| 164 | public long upperBound; |
nothing calls this directly
no outgoing calls
no test coverage detected