Operator plan = indexScan_Default(beforeLatLonIndexRowType, box, lookaheadQuantum());
Cursor cursor = API.cursor(plan, queryContext, queryBindings);
cursor.openTopLevel();
Row row;
while ((row = cursor.next()) != null) {
assertSame(beforeLatLonIndexRowType.physicalRowType(), row.rowType());
int rowBefore = getLong(row, 0).intValue();
int rowId = getLong(row, 2).intValue();
assertEquals(before, rowBefore);
assertEquals(expectedHKey(rowId), row.hKey().toString());
actual.add(rowId);