Cursor cursor = cursor(distinct, queryContext, queryBindings);
cursor.openTopLevel();
while (cursor.next() != null);
}
long stop = System.nanoTime();
long distinctNsec = stop - start - timeSetup.elapsedNsec();
if (label != null) {
// Report the difference
double averageUsecPerRow = distinctNsec / (1000.0 * runs * ROWS);
System.out.println(String.format("%s, %s fields: %s usec/row",
label, fields, averageUsecPerRow));