Operator plan = indexScan_Default(latLonIndexRowType, box, lookaheadQuantum());
Cursor cursor = API.cursor(plan, queryContext, queryBindings);
cursor.openTopLevel();
Row row;
while ((row = cursor.next()) != null) {
assertSame(latLonIndexRowType.physicalRowType(), row.rowType());
long z = getLong(row, 0);
Integer expectedId = zToId.get(z);
assertNotNull(expectedId);
int id = getLong(row, 1).intValue();
assertEquals(expectedId.intValue(), id);