final int CUSTOMERS = 1000;
final int ORDERS_PER_CUSTOMER = 5;
final int ITEMS_PER_ORDER = 2;
populateDB(CUSTOMERS, ORDERS_PER_CUSTOMER, ITEMS_PER_ORDER);
long start = System.nanoTime();
Operator plan = groupScan_Default(coi);
for (int s = 0; s < SCANS; s++) {
Cursor cursor = cursor(plan, queryContext, queryBindings);
cursor.openTopLevel();
while (cursor.next() != null) {
}