in geode-benchmarks/src/main/java/org/apache/geode/benchmark/tasks/OQLQuery.java [75:84]
private void verifyResults(final SelectResults<Portfolio> results, final long minId,
final long maxId) throws Exception {
for (final Portfolio result : results) {
final long id = result.getID();
if (id < minId || id > maxId) {
throw new Exception("Invalid Portfolio object retrieved [min =" + minId + " max =" + maxId
+ ") Portfolio retrieved =" + result);
}
}
}